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

settings_controller.rb « organizations « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a81cbf57a4236ba23fba8b470caed43efdad06d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Organizations
  class SettingsController < ApplicationController
    feature_category :cell

    before_action :authorize_admin_organization!

    def general; end
  end
end