mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-14 20:24:03 +00:00
18 lines
571 B
Ruby
18 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
|