mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
15 lines
399 B
Ruby
15 lines
399 B
Ruby
|
|
class Admin::EmailsController < ApplicationController
|
||
|
|
before_filter :verify_organizer
|
||
|
|
layout "admin"
|
||
|
|
|
||
|
|
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
|