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:
Diffstat (limited to 'app/graphql/types/custom_emoji_type.rb')
-rw-r--r--app/graphql/types/custom_emoji_type.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/graphql/types/custom_emoji_type.rb b/app/graphql/types/custom_emoji_type.rb
index 379a0c44d67..b02cd56e6df 100644
--- a/app/graphql/types/custom_emoji_type.rb
+++ b/app/graphql/types/custom_emoji_type.rb
@@ -7,6 +7,10 @@ module Types
authorize :read_custom_emoji
+ connection_type_class(Types::CountableConnectionType)
+
+ expose_permissions Types::PermissionTypes::CustomEmoji
+
field :id, ::Types::GlobalIDType[::CustomEmoji],
null: false,
description: 'ID of the emoji.'
@@ -23,5 +27,9 @@ module Types
field :external, GraphQL::Types::Boolean,
null: false,
description: 'Whether the emoji is an external link.'
+
+ field :created_at, Types::TimeType,
+ null: false,
+ description: 'Timestamp of when the custom emoji was created.'
end
end