051871a3cd
* Chore: Code Cleanup in API controllers * Remove unnecessary scoping for accounts controller
14 lines
340 B
Ruby
14 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
|