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/work_item_type.rb')
-rw-r--r--app/graphql/types/work_item_type.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/graphql/types/work_item_type.rb b/app/graphql/types/work_item_type.rb
index 05798ba3d2f..103a1c0ec9b 100644
--- a/app/graphql/types/work_item_type.rb
+++ b/app/graphql/types/work_item_type.rb
@@ -58,6 +58,10 @@ module Types
field :work_item_type, Types::WorkItems::TypeType, null: false,
description: 'Type assigned to the work item.'
+ field :archived, GraphQL::Types::Boolean, null: false,
+ description: 'Whether the work item belongs to an archived project. Always false for group level work items.',
+ alpha: { milestone: '16.5' }
+
markdown_field :title_html, null: true
markdown_field :description_html, null: true
@@ -70,5 +74,11 @@ module Types
def create_note_email
object.creatable_note_email_address(context[:current_user])
end
+
+ def archived
+ return false if object.project.blank?
+
+ object.project.archived?
+ end
end
end