Merge pull request #274 from glitch-soc/fix-packs-on-2fa-pages
Set packs on 2FA-related pages. Fixes #271.
This commit is contained in:
		
						commit
						4d34b3495d
					
				
					 4 changed files with 3 additions and 13 deletions
				
			
		|  | @ -8,8 +8,8 @@ class Auth::SessionsController < Devise::SessionsController | |||
|   skip_before_action :require_no_authentication, only: [:create] | ||||
|   skip_before_action :check_suspension, only: [:destroy] | ||||
|   prepend_before_action :authenticate_with_two_factor, if: :two_factor_enabled?, only: [:create] | ||||
|   prepend_before_action :set_pack | ||||
|   before_action :set_instance_presenter, only: [:new] | ||||
|   before_action :set_pack | ||||
| 
 | ||||
|   def create | ||||
|     super do |resource| | ||||
|  |  | |||
|  | @ -2,11 +2,7 @@ | |||
| 
 | ||||
| module Settings | ||||
|   module TwoFactorAuthentication | ||||
|     class ConfirmationsController < ApplicationController | ||||
|       layout 'admin' | ||||
| 
 | ||||
|       before_action :authenticate_user! | ||||
| 
 | ||||
|     class ConfirmationsController < BaseController | ||||
|       def new | ||||
|         prepare_two_factor_form | ||||
|       end | ||||
|  |  | |||
|  | @ -2,11 +2,7 @@ | |||
| 
 | ||||
| module Settings | ||||
|   module TwoFactorAuthentication | ||||
|     class RecoveryCodesController < ApplicationController | ||||
|       layout 'admin' | ||||
| 
 | ||||
|       before_action :authenticate_user! | ||||
| 
 | ||||
|     class RecoveryCodesController < BaseController | ||||
|       def create | ||||
|         @recovery_codes = current_user.generate_otp_backup_codes! | ||||
|         current_user.save! | ||||
|  |  | |||
|  | @ -615,8 +615,6 @@ ko: | |||
|     sensitive_content: 민감한 컨텐츠 | ||||
|   terms: | ||||
|     title: "%{instance} 이용약관과 개인정보 취급 방침" | ||||
|   themes: | ||||
|     default: Mastodon | ||||
|   time: | ||||
|     formats: | ||||
|       default: "%Y년 %m월 %d일 %H:%M" | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue