mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-30 10:42:38 +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
|