summaryrefslogtreecommitdiff
path: root/doc/api
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-04-06 03:09:23 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-04-06 03:09:23 +0000
commitf098e6d3d2c8eaaec0a228c8a3ae01f770e15dd2 (patch)
tree611a38154ba90341f6c6935a51cf7962f5896790 /doc/api
parent697d1c4e06d1c232ca8b21805cc889a0991702ab (diff)
downloadgitlab-ce-f098e6d3d2c8eaaec0a228c8a3ae01f770e15dd2.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/graphql/reference/gitlab_schema.graphql12
-rw-r--r--doc/api/graphql/reference/gitlab_schema.json12
-rw-r--r--doc/api/graphql/reference/index.md12
3 files changed, 18 insertions, 18 deletions
diff --git a/doc/api/graphql/reference/gitlab_schema.graphql b/doc/api/graphql/reference/gitlab_schema.graphql
index 79e9c25c9a5..50d5eeaf9ab 100644
--- a/doc/api/graphql/reference/gitlab_schema.graphql
+++ b/doc/api/graphql/reference/gitlab_schema.graphql
@@ -6093,7 +6093,7 @@ type Project {
): IssueConnection
"""
- (deprecated) Does this project have issues enabled?. Use `issues_access_level` instead
+ Indicates if Issues are enabled for the current user
"""
issuesEnabled: Boolean
@@ -6128,7 +6128,7 @@ type Project {
): JiraImportConnection
"""
- (deprecated) Enable jobs for this project. Use `builds_access_level` instead
+ Indicates if CI/CD pipeline jobs are enabled for the current user
"""
jobsEnabled: Boolean
@@ -6193,7 +6193,7 @@ type Project {
): MergeRequestConnection
"""
- (deprecated) Does this project have merge_requests enabled?. Use `merge_requests_access_level` instead
+ Indicates if Merge Requests are enabled for the current user
"""
mergeRequestsEnabled: Boolean
@@ -6406,7 +6406,7 @@ type Project {
serviceDeskEnabled: Boolean
"""
- Indicates if shared runners are enabled on the project
+ Indicates if Shared Runners are enabled for the project
"""
sharedRunnersEnabled: Boolean
@@ -6446,7 +6446,7 @@ type Project {
): SnippetConnection
"""
- (deprecated) Does this project have snippets enabled?. Use `snippets_access_level` instead
+ Indicates if Snippets are enabled for the current user
"""
snippetsEnabled: Boolean
@@ -6542,7 +6542,7 @@ type Project {
webUrl: String
"""
- (deprecated) Does this project have wiki enabled?. Use `wiki_access_level` instead
+ Indicates if Wikis are enabled for the current user
"""
wikiEnabled: Boolean
}
diff --git a/doc/api/graphql/reference/gitlab_schema.json b/doc/api/graphql/reference/gitlab_schema.json
index 67fc5738a5e..c7281fcc638 100644
--- a/doc/api/graphql/reference/gitlab_schema.json
+++ b/doc/api/graphql/reference/gitlab_schema.json
@@ -18344,7 +18344,7 @@
},
{
"name": "issuesEnabled",
- "description": "(deprecated) Does this project have issues enabled?. Use `issues_access_level` instead",
+ "description": "Indicates if Issues are enabled for the current user",
"args": [
],
@@ -18425,7 +18425,7 @@
},
{
"name": "jobsEnabled",
- "description": "(deprecated) Enable jobs for this project. Use `builds_access_level` instead",
+ "description": "Indicates if CI/CD pipeline jobs are enabled for the current user",
"args": [
],
@@ -18589,7 +18589,7 @@
},
{
"name": "mergeRequestsEnabled",
- "description": "(deprecated) Does this project have merge_requests enabled?. Use `merge_requests_access_level` instead",
+ "description": "Indicates if Merge Requests are enabled for the current user",
"args": [
],
@@ -19125,7 +19125,7 @@
},
{
"name": "sharedRunnersEnabled",
- "description": "Indicates if shared runners are enabled on the project",
+ "description": "Indicates if Shared Runners are enabled for the project",
"args": [
],
@@ -19220,7 +19220,7 @@
},
{
"name": "snippetsEnabled",
- "description": "(deprecated) Does this project have snippets enabled?. Use `snippets_access_level` instead",
+ "description": "Indicates if Snippets are enabled for the current user",
"args": [
],
@@ -19493,7 +19493,7 @@
},
{
"name": "wikiEnabled",
- "description": "(deprecated) Does this project have wiki enabled?. Use `wiki_access_level` instead",
+ "description": "Indicates if Wikis are enabled for the current user",
"args": [
],
diff --git a/doc/api/graphql/reference/index.md b/doc/api/graphql/reference/index.md
index 2a1c501e785..d1ddcb6435b 100644
--- a/doc/api/graphql/reference/index.md
+++ b/doc/api/graphql/reference/index.md
@@ -901,13 +901,13 @@ Information about pagination in a connection.
| `id` | ID! | ID of the project |
| `importStatus` | String | Status of import background job of the project |
| `issue` | Issue | A single issue of the project |
-| `issuesEnabled` | Boolean | (deprecated) Does this project have issues enabled?. Use `issues_access_level` instead |
+| `issuesEnabled` | Boolean | Indicates if Issues are enabled for the current user |
| `jiraImportStatus` | String | Status of Jira import background job of the project |
-| `jobsEnabled` | Boolean | (deprecated) Enable jobs for this project. Use `builds_access_level` instead |
+| `jobsEnabled` | Boolean | Indicates if CI/CD pipeline jobs are enabled for the current user |
| `lastActivityAt` | Time | Timestamp of the project last activity |
| `lfsEnabled` | Boolean | Indicates if the project has Large File Storage (LFS) enabled |
| `mergeRequest` | MergeRequest | A single merge request of the project |
-| `mergeRequestsEnabled` | Boolean | (deprecated) Does this project have merge_requests enabled?. Use `merge_requests_access_level` instead |
+| `mergeRequestsEnabled` | Boolean | Indicates if Merge Requests are enabled for the current user |
| `mergeRequestsFfOnlyEnabled` | Boolean | Indicates if no merge commits should be created and all merges should instead be fast-forwarded, which means that merging is only allowed if the branch could be fast-forwarded. |
| `name` | String! | Name of the project (without namespace) |
| `nameWithNamespace` | String! | Full name of the project with its namespace |
@@ -927,8 +927,8 @@ Information about pagination in a connection.
| `sentryErrors` | SentryErrorCollection | Paginated collection of Sentry errors on the project |
| `serviceDeskAddress` | String | E-mail address of the service desk. |
| `serviceDeskEnabled` | Boolean | Indicates if the project has service desk enabled. |
-| `sharedRunnersEnabled` | Boolean | Indicates if shared runners are enabled on the project |
-| `snippetsEnabled` | Boolean | (deprecated) Does this project have snippets enabled?. Use `snippets_access_level` instead |
+| `sharedRunnersEnabled` | Boolean | Indicates if Shared Runners are enabled for the project |
+| `snippetsEnabled` | Boolean | Indicates if Snippets are enabled for the current user |
| `sshUrlToRepo` | String | URL to connect to the project via SSH |
| `starCount` | Int! | Number of times the project has been starred |
| `statistics` | ProjectStatistics | Statistics of the project |
@@ -938,7 +938,7 @@ Information about pagination in a connection.
| `visibility` | String | Visibility of the project |
| `vulnerabilitySeveritiesCount` | VulnerabilitySeveritiesCount | Counts for each severity of vulnerability of the project. Available only when feature flag `first_class_vulnerabilities` is enabled |
| `webUrl` | String | Web URL of the project |
-| `wikiEnabled` | Boolean | (deprecated) Does this project have wiki enabled?. Use `wiki_access_level` instead |
+| `wikiEnabled` | Boolean | Indicates if Wikis are enabled for the current user |
## ProjectPermissions