about summary refs log tree commit diff
path: root/app/controllers/admin/settings_controller.rb
blob: 6cca5c3e3fbf26d9c8d7cc1a21cc12c1f46cabef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true

module Admin
  class SettingsController < BaseController
    def index
      @settings = Setting.all_as_records
    end

    def update
      @setting = Setting.where(var: params[:id]).first_or_initialize(var: params[:id])
      value    = settings_params[:value]

      # Special cases
      value = value == 'true' if @setting.var == 'open_registrations'

      if @setting.value != value
        @setting.value = value
        @setting.save
      end

      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
  end
end