Configure current tenant in a before_action of the ApplicationController
This commit is contained in:
		
							parent
							
								
									63bb32f2a7
								
							
						
					
					
						commit
						be3497ad64
					
				@ -1,6 +1,7 @@
 | 
				
			|||||||
# Copyright (C) 2024 Manuel Bustillo
 | 
					# Copyright (C) 2024 Manuel Bustillo
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class ApplicationController < ActionController::Base
 | 
					class ApplicationController < ActionController::Base
 | 
				
			||||||
 | 
					  before_action :set_tenant
 | 
				
			||||||
  before_action :authenticate_user!
 | 
					  before_action :authenticate_user!
 | 
				
			||||||
  after_action :set_csrf_cookie
 | 
					  after_action :set_csrf_cookie
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -29,6 +30,10 @@ class ApplicationController < ActionController::Base
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  private
 | 
					  private
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  def set_tenant
 | 
				
			||||||
 | 
					    ActsAsTenant.current_tenant = Wedding.find_by(slug: params[:slug])
 | 
				
			||||||
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  def development_swagger?
 | 
					  def development_swagger?
 | 
				
			||||||
    Rails.env.test? ||
 | 
					    Rails.env.test? ||
 | 
				
			||||||
      Rails.env.development? && request.headers['referer']&.include?('/api-docs/index.html')
 | 
					      Rails.env.development? && request.headers['referer']&.include?('/api-docs/index.html')
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user