mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			201 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			201 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
class WidgetTestsController < ActionController::Base
 | 
						|
  before_action :set_web_widget
 | 
						|
 | 
						|
  def index
 | 
						|
    render
 | 
						|
  end
 | 
						|
 | 
						|
  private
 | 
						|
 | 
						|
  def set_web_widget
 | 
						|
    @web_widget = Channel::WebWidget.first
 | 
						|
  end
 | 
						|
end
 |