Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'config/routes.rb')
-rw-r--r--config/routes.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 873299b9a..4115bf5ba 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -119,6 +119,12 @@ Rails.application.routes.draw do
get "getting_started_completed" => :getting_started_completed
end
+ resource :two_factor_authentication, only: %i[show create destroy] do
+ get :confirm, action: :confirm_2fa
+ post :confirm, action: :confirm_and_activate_2fa
+ get :recovery_codes
+ end
+
devise_for :users, controllers: {sessions: :sessions}, skip: :registration
devise_scope :user do
get "/users/sign_up" => "registrations#new", :as => :new_user_registration
@@ -239,4 +245,5 @@ Rails.application.routes.draw do
end
get ".well-known/openid-configuration", to: "api/openid_connect/discovery#configuration"
+ get "manifest.json", to: "manifest#show"
end