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:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2018-12-19 16:15:58 +0300
committerYorick Peterse <yorickpeterse@gmail.com>2019-01-31 18:51:17 +0300
commit084b7edb17d25a3d43526cca560569dd82c5c09d (patch)
treeeff6234322aec4cb438d4751bb7adb1c19cfd5cc /lib/api/entities.rb
parent9f67b886b2cf425329a4dc792e6c41cf571ab102 (diff)
Do not expose trigger token when user should not see it
Diffstat (limited to 'lib/api/entities.rb')
-rw-r--r--lib/api/entities.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/api/entities.rb b/lib/api/entities.rb
index 4edec631e8d..9f1394571d8 100644
--- a/lib/api/entities.rb
+++ b/lib/api/entities.rb
@@ -1223,8 +1223,11 @@ module API
end
class Trigger < Grape::Entity
+ include ::API::Helpers::Presentable
+
expose :id
- expose :token, :description
+ expose :token
+ expose :description
expose :created_at, :updated_at, :last_used
expose :owner, using: Entities::UserBasic
end