15 lines
340 B
Ruby
15 lines
340 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)
|
||
|
head :no_content
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def permitted_params
|
||
|
params.permit(:name, :website_token)
|
||
|
end
|
||
|
end
|