blob: ac3e3f318482da50fd3ea02b6bd2e59319a0f5fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
Rails.application.routes.draw do
# For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html
root to: 'welcome#index'
get '/my/dashboard', to: 'welcome#dashboard'
# Discourse SSO
get 'authenticate(/:token)', to: 'welcome#authenticate'
get 'logout', to: 'welcome#logout'
end
|