Sha256: c064f142c36e14e1125b4c01b0976edb430ca0609b1490d5b7c9cf29ef410c8c
Contents?: true
Size: 1.28 KB
Versions: 16
Compression:
Stored size: 1.28 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' # 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
16 entries across 16 versions & 2 rubygems