Skip to content
代码片段 群组 项目
提交 910b16a8 编辑于 作者: Jan Provaznik's avatar Jan Provaznik
浏览文件

Expose confidential field for work items

This is same as Issue's confidential field.
上级 574fbc80
No related branches found
No related tags found
无相关合并请求
...@@ -6,6 +6,8 @@ class WorkItemType < BaseObject ...@@ -6,6 +6,8 @@ class WorkItemType < BaseObject
authorize :read_work_item authorize :read_work_item
field :confidential, GraphQL::Types::Boolean, null: false,
description: 'Indicates the work item is confidential.'
field :description, GraphQL::Types::String, null: true, field :description, GraphQL::Types::String, null: true,
description: 'Description of the work item.' description: 'Description of the work item.'
field :id, Types::GlobalIDType[::WorkItem], null: false, field :id, Types::GlobalIDType[::WorkItem], null: false,
......
...@@ -18530,6 +18530,7 @@ Represents vulnerability letter grades with associated projects. ...@@ -18530,6 +18530,7 @@ Represents vulnerability letter grades with associated projects.
   
| Name | Type | Description | | Name | Type | Description |
| ---- | ---- | ----------- | | ---- | ---- | ----------- |
| <a id="workitemconfidential"></a>`confidential` | [`Boolean!`](#boolean) | Indicates the work item is confidential. |
| <a id="workitemdescription"></a>`description` | [`String`](#string) | Description of the work item. | | <a id="workitemdescription"></a>`description` | [`String`](#string) | Description of the work item. |
| <a id="workitemdescriptionhtml"></a>`descriptionHtml` | [`String`](#string) | The GitLab Flavored Markdown rendering of `description`. | | <a id="workitemdescriptionhtml"></a>`descriptionHtml` | [`String`](#string) | The GitLab Flavored Markdown rendering of `description`. |
| <a id="workitemid"></a>`id` | [`WorkItemID!`](#workitemid) | Global ID of the work item. | | <a id="workitemid"></a>`id` | [`WorkItemID!`](#workitemid) | Global ID of the work item. |
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
it 'has specific fields' do it 'has specific fields' do
fields = %i[ fields = %i[
confidential
description description
description_html description_html
id id
......
...@@ -41,6 +41,7 @@ ...@@ -41,6 +41,7 @@
'lockVersion' => work_item.lock_version, 'lockVersion' => work_item.lock_version,
'state' => "OPEN", 'state' => "OPEN",
'title' => work_item.title, 'title' => work_item.title,
'confidential' => work_item.confidential,
'workItemType' => hash_including('id' => work_item.work_item_type.to_gid.to_s), 'workItemType' => hash_including('id' => work_item.work_item_type.to_gid.to_s),
'userPermissions' => { 'readWorkItem' => true, 'updateWorkItem' => true, 'deleteWorkItem' => false } 'userPermissions' => { 'readWorkItem' => true, 'updateWorkItem' => true, 'deleteWorkItem' => false }
) )
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册