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

access_tokens_controller.rb « settings « groups « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b9ab2e008ccbc05f931b3bbcb02d1fdb1ca33c88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module Groups
  module Settings
    class AccessTokensController < Groups::ApplicationController
      include AccessTokensActions

      layout 'group_settings'
      feature_category :authentication_and_authorization

      alias_method :resource, :group

      def resource_access_tokens_path
        group_settings_access_tokens_path
      end
    end
  end
end