kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.7 KiB
57 lines
1.7 KiB
7 years ago
|
OpenProject::Application::routes.draw do
|
||
|
|
||
|
namespace 'two_factor_authentication' do
|
||
|
get :request, to: 'authentication#request_otp'
|
||
|
post :confirm, to: 'authentication#confirm_otp'
|
||
|
post :retry, to: 'authentication#retry'
|
||
|
end
|
||
|
|
||
|
scope 'two_factor_authentication' do # Avoids adding the namespace prefix
|
||
|
scope 'device_registration',
|
||
|
controller: 'two_factor_authentication/forced_registration/two_factor_devices' do
|
||
|
get :new, action: :new, as: 'new_forced_2fa_device'
|
||
|
post :register, action: :register, as: 'register_forced_2fa_device'
|
||
|
match '/:device_id/confirm', action: :confirm, via: [:get, :post], as: 'confirm_forced_2fa_device'
|
||
|
end
|
||
|
end
|
||
|
|
||
|
resources :users do
|
||
|
member do
|
||
|
resources :two_factor_devices,
|
||
|
param: :device_id,
|
||
|
controller: 'two_factor_authentication/users/two_factor_devices',
|
||
|
as: 'user_2fa_devices',
|
||
|
only: [:new, :create, :destroy] do
|
||
|
|
||
|
# Register new device ( 'create' )
|
||
|
post :register, on: :collection
|
||
|
|
||
|
# Delete all devices
|
||
|
post :delete_all, on: :collection
|
||
|
|
||
|
# Make default
|
||
|
post :make_default, on: :member
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
|
||
|
scope 'my' do
|
||
|
resources :two_factor_devices,
|
||
|
controller: 'two_factor_authentication/my/two_factor_devices',
|
||
|
param: :device_id,
|
||
|
as: 'my_2fa_devices',
|
||
|
only: [:index, :new, :destroy] do
|
||
|
# Register new device ( 'create' )
|
||
|
post :register, on: :collection
|
||
|
|
||
|
# Confirm token flow for new devices
|
||
|
get :confirm, on: :member
|
||
|
post :confirm, on: :member
|
||
|
|
||
|
# Make a device a default
|
||
|
post :make_default, on: :member
|
||
|
end
|
||
|
end
|
||
|
end
|