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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-02-15 09:09:11 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-02-15 09:09:11 +0300
commita7d1525878904f2f8326baf1c8108f2204ac50cb (patch)
treeda855edafb086adebe33c5eed462d753b58e2836 /lib/api/entities/impersonation_token_with_token.rb
parentb69f406585ff64b1c5140ebba775cc754fabb358 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/api/entities/impersonation_token_with_token.rb')
-rw-r--r--lib/api/entities/impersonation_token_with_token.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/api/entities/impersonation_token_with_token.rb b/lib/api/entities/impersonation_token_with_token.rb
new file mode 100644
index 00000000000..4904f107628
--- /dev/null
+++ b/lib/api/entities/impersonation_token_with_token.rb
@@ -0,0 +1,9 @@
+# frozen_string_literal: true
+
+module API
+ module Entities
+ class ImpersonationTokenWithToken < Entities::PersonalAccessTokenWithToken
+ expose :impersonation
+ end
+ end
+end