You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
864 B
39 lines
864 B
# frozen_string_literal: true |
|
|
|
module Admin |
|
class SettingsController < BaseController |
|
BOOLEAN_SETTINGS = %w(open_registrations).freeze |
|
|
|
def index |
|
@settings = Setting.all_as_records |
|
end |
|
|
|
def update |
|
@setting = Setting.where(var: params[:id]).first_or_initialize(var: params[:id]) |
|
@setting.update(value: value_for_update) |
|
|
|
respond_to do |format| |
|
format.html { redirect_to admin_settings_path } |
|
format.json { respond_with_bip(@setting) } |
|
end |
|
end |
|
|
|
private |
|
|
|
def settings_params |
|
params.require(:setting).permit(:value) |
|
end |
|
|
|
def value_for_update |
|
if updating_boolean_setting? |
|
settings_params[:value] == 'true' |
|
else |
|
settings_params[:value] |
|
end |
|
end |
|
|
|
def updating_boolean_setting? |
|
BOOLEAN_SETTINGS.include?(params[:id]) |
|
end |
|
end |
|
end
|
|
|