mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-14 12:14:03 +00:00
14 lines
382 B
Ruby
14 lines
382 B
Ruby
|
|
class Admin::EmailsController < ApplicationController
|
||
|
|
before_filter :verify_organizer
|
||
|
|
|
||
|
|
def update
|
||
|
|
@conference.email_settings.update_attributes(params[:email_settings])
|
||
|
|
redirect_to(admin_conference_email_settings_path(@conference.short_title), :notice => 'Settings have been successfully updated.')
|
||
|
|
end
|
||
|
|
|
||
|
|
def show
|
||
|
|
@settings = @conference.email_settings
|
||
|
|
end
|
||
|
|
|
||
|
|
end
|