2020-05-24 23:13:21 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Projects
|
|
|
|
module Settings
|
|
|
|
class AccessTokensController < Projects::ApplicationController
|
2022-03-02 08:16:31 +05:30
|
|
|
include AccessTokensActions
|
2020-05-24 23:13:21 +05:30
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
layout 'project_settings'
|
2021-01-03 14:25:43 +05:30
|
|
|
feature_category :authentication_and_authorization
|
|
|
|
|
2022-03-02 08:16:31 +05:30
|
|
|
alias_method :resource, :project
|
2020-05-24 23:13:21 +05:30
|
|
|
|
2022-03-02 08:16:31 +05:30
|
|
|
def resource_access_tokens_path
|
|
|
|
namespace_project_settings_access_tokens_path
|
2020-05-24 23:13:21 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|