deletions
This commit is contained in:
parent
0b04179be9
commit
2d2b605063
2 changed files with 0 additions and 33 deletions
|
|
@ -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
|
|
||||||
|
|
@ -1,14 +0,0 @@
|
||||||
module RegistrationHelper
|
|
||||||
def generate_supporter_level_js(conference)
|
|
||||||
str = ''
|
|
||||||
conference.supporter_levels.map do |t|
|
|
||||||
next if t.url.empty?
|
|
||||||
|
|
||||||
str += "if ($('#registration_supporter_registration_attributes_supporter_level_id option:selected').text() == '#{t.title}') {\n"
|
|
||||||
str += "console.log('#{t.title}');\n"
|
|
||||||
str += "str = 'If you have a confirmation or registration code, enter it here. Otherwise, you can purchase a <i>#{t.title}</i> ticket <a href=\"#{t.url}\" target=_new>here</a>, if you need to.';\n"
|
|
||||||
str += "}\n\n"
|
|
||||||
end.join("\n")
|
|
||||||
str
|
|
||||||
end
|
|
||||||
end
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue