summaryrefslogtreecommitdiff
path: root/doc/api/graphql/reference/gitlab_schema.graphql
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-01-22 15:08:48 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-01-22 15:08:48 +0000
commit180cd023a11c0eb413ad0de124d9758ea25672bd (patch)
tree63d77be00a22dc637daa0b6d5b644e230f5f4890 /doc/api/graphql/reference/gitlab_schema.graphql
parentbe3e24ea3c9f497efde85900df298ce9bc42fce8 (diff)
downloadgitlab-ce-180cd023a11c0eb413ad0de124d9758ea25672bd.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api/graphql/reference/gitlab_schema.graphql')
-rw-r--r--doc/api/graphql/reference/gitlab_schema.graphql35
1 files changed, 35 insertions, 0 deletions
diff --git a/doc/api/graphql/reference/gitlab_schema.graphql b/doc/api/graphql/reference/gitlab_schema.graphql
index f3bf45b0b3d..7d18a0abfe5 100644
--- a/doc/api/graphql/reference/gitlab_schema.graphql
+++ b/doc/api/graphql/reference/gitlab_schema.graphql
@@ -2435,6 +2435,11 @@ type GrafanaIntegration {
type Group {
"""
+ Indicates whether Auto DevOps is enabled for all projects within this group
+ """
+ autoDevopsEnabled: Boolean
+
+ """
Avatar URL of the group
"""
avatarUrl: String
@@ -2450,6 +2455,11 @@ type Group {
descriptionHtml: String
"""
+ Indicates if a group has email notifications disabled
+ """
+ emailsDisabled: Boolean
+
+ """
Find a single epic
"""
epic(
@@ -2624,6 +2634,11 @@ type Group {
path: String!
"""
+ The permission level required to create projects in the group
+ """
+ projectCreationLevel: String
+
+ """
Projects within this namespace
"""
projects(
@@ -2659,11 +2674,26 @@ type Group {
requestAccessEnabled: Boolean
"""
+ Indicates if all users in this group are required to set up two-factor authentication
+ """
+ requireTwoFactorAuthentication: Boolean
+
+ """
Aggregated storage statistics of the namespace. Only available for root namespaces
"""
rootStorageStatistics: RootStorageStatistics
"""
+ Indicates if sharing a project with another group within this group is prevented
+ """
+ shareWithGroupLock: Boolean
+
+ """
+ The permission level required to create subgroups within the group
+ """
+ subgroupCreationLevel: String
+
+ """
Time logged in issues by group members
"""
timelogs(
@@ -2699,6 +2729,11 @@ type Group {
): TimelogConnection!
"""
+ Time before two-factor authentication is enforced
+ """
+ twoFactorGracePeriod: Int
+
+ """
Permissions for the current user on the resource
"""
userPermissions: GroupPermissions!