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