houdini/app/controllers/nonprofits/campaign_templates_controller.rb
2018-11-21 11:00:44 -06:00

26 lines
615 B
Ruby

module Nonprofits
class CampaignTemplatesController < ApplicationController
include NonprofitHelper
before_filter :authenticate_nonprofit_admin!, only: :create
before_filter :authenticate_nonprofit_user!, only: [:index, :show]
def index
@templates = CampaignTemplate.all
@nonprofit = current_nonprofit
end
def create
template = CampaignTemplate.create(params[:campaign_template])
json_saved template
end
def destroy
campaign = CampaignTemplate.find(params[:id])
campaign.destroy
render json: {}, status: :no_content
end
end
end