Sha256: 98a33c4b8aa4b0366b9a058cd20e76af73f673018e44221017cf5b5f02b34d51
Contents?: true
Size: 1.33 KB
Versions: 2
Compression:
Stored size: 1.33 KB
Contents
Rails.application.routes.draw do # when using multiple models, controllers will default to the first available # devise mapping. routes for subsequent devise mappings will need to defined # within a `devise_scope` block # define :users as the first devise mapping: mount_devise_token_auth_for 'User', at: '/auth', controllers: { registrations: 'registrations' } # define :mangs as the second devise mapping. routes using this class will # need to be defined within a devise_scope as shown below mount_devise_token_auth_for "Mang", at: '/mangs' mount_devise_token_auth_for 'EvilUser', at: '/evil_user_auth', controllers: { confirmations: 'overrides/confirmations', passwords: 'overrides/passwords', omniauth_callbacks: 'overrides/omniauth_callbacks', registrations: 'overrides/registrations', sessions: 'overrides/sessions', token_validations: 'overrides/token_validations' } # this route will authorize visitors using the User class get 'demo/members_only', to: 'demo_user#members_only' # routes within this block will authorize visitors using the Mang class get 'demo/members_only_mang', to: 'demo_mang#members_only' # routes within this block will authorize visitors using the Mang or User class get 'demo/members_only_group', to: 'demo_group#members_only' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
xing_backend_token_auth-0.1.32 | test/dummy/config/routes.rb |
xing_backend_token_auth-0.1.31 | test/dummy/config/routes.rb |