osem-fcy/app/controllers/admin/sponsorship_levels_controller.rb
Gopesh Tulsyan f68ac7e032 Sponsorship level dashboard
removed donation amount
removed explicit rendering of sponsor levels
2014-06-06 15:40:33 +05:30

17 lines
610 B
Ruby

module Admin
class SponsorshipLevelsController < ApplicationController
before_filter :verify_organizer
def update
if @conference.update_attributes(params[:conference])
redirect_to(admin_conference_sponsorship_levels_path(
conference_id: @conference.short_title),
notice: 'Sponsorship levels were successfully updated.')
else
redirect_to(admin_conference_sponsorship_levels_path(
conference_id: @conference.short_title),
alert: 'Sponsorship levels update failed')
end
end
end
end