Welcome to mirror list, hosted at ThFree Co, Russian Federation.

application_settings_controller.rb « admin « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 39ca0b4feba2639d7e1f4c8b016a2ec3c422e317 (plain)
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
class Admin::ApplicationSettingsController < Admin::ApplicationController
  before_filter :set_application_setting

  def show
  end

  def update
    if @application_setting.update_attributes(application_setting_params)
      redirect_to admin_application_settings_path,
        notice: 'Application settings saved successfully'
    else
      render :show
    end
  end

  private

  def set_application_setting
    @application_setting = ApplicationSetting.last
  end

  def application_setting_params
    params.require(:application_setting).permit(
      :default_projects_limit,
      :signup_enabled,
      :signin_enabled,
      :gravatar_enabled,
      :sign_in_text,
    )
  end
end