13 lines
235 B
Ruby
13 lines
235 B
Ruby
class Admin::Settings::RegistrationsController < Admin::SettingsController
|
|
def show
|
|
end
|
|
|
|
def update
|
|
update_settings
|
|
|
|
redirect_to admin_settings_registrations_path, flash: {
|
|
success: "Settings saved"
|
|
}
|
|
end
|
|
end
|