2018-03-25 16:15:39 +00:00
|
|
|
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
2018-03-25 17:30:42 +00:00
|
|
|
module Campaigns
|
|
|
|
class SupportersController < ApplicationController
|
2018-08-08 21:31:42 +00:00
|
|
|
include Controllers::CampaignHelper
|
2018-03-25 17:30:42 +00:00
|
|
|
|
2019-07-13 07:53:59 +00:00
|
|
|
before_action :authenticate_campaign_editor!, only: [:index]
|
2018-03-25 17:30:42 +00:00
|
|
|
|
|
|
|
def index
|
|
|
|
@panels_layout = true
|
|
|
|
@nonprofit = current_nonprofit
|
|
|
|
@campaign = current_campaign
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.json do
|
|
|
|
render json: QuerySupporters.campaign_list(@nonprofit.id, @campaign.id, params)
|
|
|
|
end
|
|
|
|
format.html
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|