deletions

This commit is contained in:
Stella Rouzi 2014-09-02 22:23:49 +03:00
parent 0b04179be9
commit 2d2b605063
2 changed files with 0 additions and 33 deletions

View file

@ -1,19 +0,0 @@
module Admin
class SupportersController < Admin::BaseController
load_and_authorize_resource :conference, find_by: :short_title
load_and_authorize_resource through: :conference
def index
respond_to do |format|
format.html
format.json { render json: DatatableSupporters.new(@conference.supporter_registrations, view_context) }
end
end
def create
params[:supporter_registration][:conference_id] = @conference.id
SupporterRegistration.create!(params[:supporter_registration])
redirect_to(admin_conference_supporters_path(conference_id: @conference.short_title), notice: 'Supporter added')
end
end
end