f9e8bb8e10
Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
21 lines
500 B
Ruby
21 lines
500 B
Ruby
class Api::V1::Widget::EventsController < Api::V1::Widget::BaseController
|
|
include Events::Types
|
|
|
|
def create
|
|
Rails.configuration.dispatcher.dispatch(permitted_params[:name], Time.zone.now, contact_inbox: @contact_inbox, event_info: event_info)
|
|
head :no_content
|
|
end
|
|
|
|
private
|
|
|
|
def event_info
|
|
{
|
|
widget_language: params[:locale],
|
|
browser_language: browser.accept_language.first&.code
|
|
}
|
|
end
|
|
|
|
def permitted_params
|
|
params.permit(:name, :website_token)
|
|
end
|
|
end
|