You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 7, 2018. It is now read-only.
latentflip edited this page Nov 1, 2012
·
1 revision
Out of the box, the default dashboard is picked simply as the first one alphabetically.
You can override this by changing the sinatra setting :default_dashboard. This is easily done in the config.ru in your app's directory like so:
...
configuredoset:auth_token,'AUTH_TOKEN'set:default_dashboard,'my_favourite_dashboard'#<==== set default dashboard like thishelpersdodefprotected!redirect('/auth/g')unlesssession[:user_id]end
...