a07200bedf
* chore: Campaign ID migration for existing accounts * chore: update factory * chore: minor fixes * chore: fixes
28 lines
659 B
Ruby
28 lines
659 B
Ruby
class Api::V1::Accounts::CampaignsController < Api::V1::Accounts::BaseController
|
|
before_action :campaign, except: [:index, :create]
|
|
before_action :check_authorization
|
|
|
|
def index
|
|
@campaigns = Current.account.campaigns
|
|
end
|
|
|
|
def create
|
|
@campaign = Current.account.campaigns.create!(campaign_params)
|
|
end
|
|
|
|
def show; end
|
|
|
|
def update
|
|
@campaign.update(campaign_params)
|
|
end
|
|
|
|
private
|
|
|
|
def campaign
|
|
@campaign ||= Current.account.campaigns.find_by(display_id: params[:id])
|
|
end
|
|
|
|
def campaign_params
|
|
params.require(:campaign).permit(:title, :description, :message, :enabled, :inbox_id, :sender_id, trigger_rules: {})
|
|
end
|
|
end
|