15 lines
320 B
Ruby
15 lines
320 B
Ruby
|
module Campaigns; class CampaignGiftOptionsController < ApplicationController
|
||
|
include CampaignHelper
|
||
|
|
||
|
before_filter :authenticate_campaign_editor!, only: [:index]
|
||
|
|
||
|
def index
|
||
|
respond_to do |format|
|
||
|
format.json do
|
||
|
render json: QueryCampaignGifts.report_metrics(current_campaign.id)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end; end
|