Allow setting of default language through config
Setting of locale in controller extracted to Localized concern, the doorkeeper authorized applications controller moved under custom namespace with inclusion of Localized, which resolves the "it sometimes appears in a different random language" bug
This commit is contained in:
		
					parent
					
						
							
								624a9a7136
							
						
					
				
			
			
				commit
				
					
						e3a3422a65
					
				
			
		
					 7 changed files with 43 additions and 15 deletions
				
			
		
							
								
								
									
										16
									
								
								app/controllers/oauth/authorized_applications_controller.rb
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								app/controllers/oauth/authorized_applications_controller.rb
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,16 @@ | |||
| # frozen_string_literal: true | ||||
| 
 | ||||
| class Oauth::AuthorizedApplicationsController < Doorkeeper::AuthorizedApplicationsController | ||||
|   include Localized | ||||
| 
 | ||||
|   skip_before_action :authenticate_resource_owner! | ||||
| 
 | ||||
|   before_action :store_current_location | ||||
|   before_action :authenticate_resource_owner! | ||||
| 
 | ||||
|   private | ||||
| 
 | ||||
|   def store_current_location | ||||
|     store_location_for(:user, request.url) | ||||
|   end | ||||
| end | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue