osem-fcy/app/controllers/admin/sponsors_controller.rb
Gopesh Tulsyan 67dab025a9 Sponsors dashboard
Removed explicit rendering of sponsors
2014-06-12 23:34:27 +05:30

17 lines
571 B
Ruby

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