summaryrefslogtreecommitdiff
path: root/app/graphql/types/dependency_proxy/image_ttl_group_policy_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/dependency_proxy/image_ttl_group_policy_type.rb')
-rw-r--r--app/graphql/types/dependency_proxy/image_ttl_group_policy_type.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/graphql/types/dependency_proxy/image_ttl_group_policy_type.rb b/app/graphql/types/dependency_proxy/image_ttl_group_policy_type.rb
index 29bba7122d0..9ab7c50998d 100644
--- a/app/graphql/types/dependency_proxy/image_ttl_group_policy_type.rb
+++ b/app/graphql/types/dependency_proxy/image_ttl_group_policy_type.rb
@@ -8,9 +8,9 @@ module Types
authorize :read_dependency_proxy
+ field :created_at, Types::TimeType, null: true, description: 'Timestamp of creation.'
field :enabled, GraphQL::Types::Boolean, null: false, description: 'Indicates whether the policy is enabled or disabled.'
field :ttl, GraphQL::Types::Int, null: true, description: 'Number of days to retain a cached image file.'
- field :created_at, Types::TimeType, null: true, description: 'Timestamp of creation.'
field :updated_at, Types::TimeType, null: true, description: 'Timestamp of the most recent update.'
end
end