mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-30 18:47:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			830 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			830 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 destroy
 | |
|     @campaign.destroy!
 | |
|     head :ok
 | |
|   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, :trigger_only_during_business_hours, :inbox_id, :sender_id,
 | |
|                                      :scheduled_at, audience: [:type, :id], trigger_rules: {})
 | |
|   end
 | |
| end
 | 
