From 7e9c479f7de77702622631cff2628a9c8dcbc627 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Thu, 19 Nov 2020 08:27:35 +0000 Subject: Add latest changes from gitlab-org/gitlab@13-6-stable-ee --- app/graphql/types/container_repository_type.rb | 27 ++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 app/graphql/types/container_repository_type.rb (limited to 'app/graphql/types/container_repository_type.rb') diff --git a/app/graphql/types/container_repository_type.rb b/app/graphql/types/container_repository_type.rb new file mode 100644 index 00000000000..45d19fdbc50 --- /dev/null +++ b/app/graphql/types/container_repository_type.rb @@ -0,0 +1,27 @@ +# frozen_string_literal: true + +module Types + class ContainerRepositoryType < BaseObject + graphql_name 'ContainerRepository' + + description 'A container repository' + + authorize :read_container_image + + field :id, GraphQL::ID_TYPE, null: false, description: 'ID of the container repository.' + field :name, GraphQL::STRING_TYPE, null: false, description: 'Name of the container repository.' + field :path, GraphQL::STRING_TYPE, null: false, description: 'Path of the container repository.' + field :location, GraphQL::STRING_TYPE, null: false, description: 'URL of the container repository.' + field :created_at, Types::TimeType, null: false, description: 'Timestamp when the container repository was created.' + field :updated_at, Types::TimeType, null: false, description: 'Timestamp when the container repository was updated.' + field :expiration_policy_started_at, Types::TimeType, null: true, description: 'Timestamp when the cleanup done by the expiration policy was started on the container repository.' + field :expiration_policy_cleanup_status, Types::ContainerRepositoryCleanupStatusEnum, null: true, description: 'The tags cleanup status for the container repository.' + field :status, Types::ContainerRepositoryStatusEnum, null: true, description: 'Status of the container repository.' + field :tags_count, GraphQL::INT_TYPE, null: false, description: 'Number of tags associated with this image.' + field :can_delete, GraphQL::BOOLEAN_TYPE, null: false, description: 'Can the current user delete the container repository.' + + def can_delete + Ability.allowed?(current_user, :update_container_image, object) + end + end +end -- cgit v1.2.1