6772312ea7
The primary license of the project is changing to: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later with some specific files to be licensed under the one of two licenses: CC0-1.0 LGPL-3.0-or-later This commit is one of the many steps to relicense the entire codebase. Documentation granting permission for this relicensing (from all past contributors who hold copyrights) is on file with Software Freedom Conservancy, Inc.
22 lines
515 B
Ruby
22 lines
515 B
Ruby
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
|
module Campaigns
|
|
class SupportersController < ApplicationController
|
|
include CampaignHelper
|
|
|
|
before_filter :authenticate_campaign_editor!, only: [:index]
|
|
|
|
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
|