98e2a9b8b5
- Builder for creating Campaign conversations - Widget endpoint to fetch the campaigns
13 lines
275 B
Ruby
13 lines
275 B
Ruby
class Api::V1::Widget::CampaignsController < Api::V1::Widget::BaseController
|
|
skip_before_action :set_contact
|
|
|
|
def index
|
|
@campaigns = @web_widget.inbox.campaigns.where(enabled: true)
|
|
end
|
|
|
|
private
|
|
|
|
def permitted_params
|
|
params.permit(:website_token)
|
|
end
|
|
end
|