description: 'Indicates if a link to create or view a merge request should display after a push to Git repositories of the project from the command line'
description: 'Indicates if a link to create or view a merge request should display after a push to Git repositories of the project from the command line'
=_('Select the branch you want to set as the default for this project. All merge requests and commits will automatically be made against this branch unless you specify a different one.')
=_('Select the branch you want to set as the default for this project. All merge requests and commits will automatically be made against this branch unless you specify a different one.')
@@ -704,6 +704,7 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph
...
@@ -704,6 +704,7 @@ The API can be explored interactively using the [GraphiQL IDE](../index.md#graph
| `onlyAllowMergeIfAllDiscussionsAreResolved` | Boolean | Indicates if merge requests of the project can only be merged when all the discussions are resolved |
| `onlyAllowMergeIfAllDiscussionsAreResolved` | Boolean | Indicates if merge requests of the project can only be merged when all the discussions are resolved |
| `printingMergeRequestLinkEnabled` | Boolean | Indicates if a link to create or view a merge request should display after a push to Git repositories of the project from the command line |
| `printingMergeRequestLinkEnabled` | Boolean | Indicates if a link to create or view a merge request should display after a push to Git repositories of the project from the command line |
| `removeSourceBranchAfterMerge` | Boolean | Indicates if `Delete source branch` option should be enabled by default for all new merge requests of the project |
| `removeSourceBranchAfterMerge` | Boolean | Indicates if `Delete source branch` option should be enabled by default for all new merge requests of the project |
| `autocloseReferencedIssues` | Boolean | Indicates if issues referenced by merge requests and commits within the default branch are closed automatically |
| `namespace` | Namespace | Namespace of the project |
| `namespace` | Namespace | Namespace of the project |
| `group` | Group | Group of the project |
| `group` | Group | Group of the project |
| `statistics` | ProjectStatistics | Statistics of the project |
| `statistics` | ProjectStatistics | Statistics of the project |
@@ -156,6 +156,7 @@ When the user is authenticated and `simple` is not set this returns something li
...
@@ -156,6 +156,7 @@ When the user is authenticated and `simple` is not set this returns something li
"remove_source_branch_after_merge":false,
"remove_source_branch_after_merge":false,
"request_access_enabled":false,
"request_access_enabled":false,
"merge_method":"merge",
"merge_method":"merge",
"autoclose_referenced_issues":true,
"statistics":{
"statistics":{
"commit_count":37,
"commit_count":37,
"storage_size":1038090,
"storage_size":1038090,
...
@@ -254,6 +255,7 @@ When the user is authenticated and `simple` is not set this returns something li
...
@@ -254,6 +255,7 @@ When the user is authenticated and `simple` is not set this returns something li
"packages_enabled":true,
"packages_enabled":true,
"service_desk_enabled":false,
"service_desk_enabled":false,
"service_desk_address":null,
"service_desk_address":null,
"autoclose_referenced_issues":true,
"statistics":{
"statistics":{
"commit_count":12,
"commit_count":12,
"storage_size":2066080,
"storage_size":2066080,
...
@@ -385,6 +387,7 @@ This endpoint supports [keyset pagination](README.md#keyset-based-pagination) fo
...
@@ -385,6 +387,7 @@ This endpoint supports [keyset pagination](README.md#keyset-based-pagination) fo
"remove_source_branch_after_merge":false,
"remove_source_branch_after_merge":false,
"request_access_enabled":false,
"request_access_enabled":false,
"merge_method":"merge",
"merge_method":"merge",
"autoclose_referenced_issues":true,
"statistics":{
"statistics":{
"commit_count":37,
"commit_count":37,
"storage_size":1038090,
"storage_size":1038090,
...
@@ -483,6 +486,7 @@ This endpoint supports [keyset pagination](README.md#keyset-based-pagination) fo
...
@@ -483,6 +486,7 @@ This endpoint supports [keyset pagination](README.md#keyset-based-pagination) fo
"packages_enabled":true,
"packages_enabled":true,
"service_desk_enabled":false,
"service_desk_enabled":false,
"service_desk_address":null,
"service_desk_address":null,
"autoclose_referenced_issues":true,
"statistics":{
"statistics":{
"commit_count":12,
"commit_count":12,
"storage_size":2066080,
"storage_size":2066080,
...
@@ -593,6 +597,7 @@ Example response:
...
@@ -593,6 +597,7 @@ Example response:
"remove_source_branch_after_merge":false,
"remove_source_branch_after_merge":false,
"request_access_enabled":false,
"request_access_enabled":false,
"merge_method":"merge",
"merge_method":"merge",
"autoclose_referenced_issues":true,
"statistics":{
"statistics":{
"commit_count":37,
"commit_count":37,
"storage_size":1038090,
"storage_size":1038090,
...
@@ -688,6 +693,7 @@ Example response:
...
@@ -688,6 +693,7 @@ Example response:
"packages_enabled":true,
"packages_enabled":true,
"service_desk_enabled":false,
"service_desk_enabled":false,
"service_desk_address":null,
"service_desk_address":null,
"autoclose_referenced_issues":true,
"statistics":{
"statistics":{
"commit_count":12,
"commit_count":12,
"storage_size":2066080,
"storage_size":2066080,
...
@@ -829,6 +835,7 @@ GET /projects/:id
...
@@ -829,6 +835,7 @@ GET /projects/:id
"packages_enabled":true,
"packages_enabled":true,
"service_desk_enabled":false,
"service_desk_enabled":false,
"service_desk_address":null,
"service_desk_address":null,
"autoclose_referenced_issues":true,
"statistics":{
"statistics":{
"commit_count":37,
"commit_count":37,
"storage_size":1038090,
"storage_size":1038090,
...
@@ -986,6 +993,7 @@ POST /projects
...
@@ -986,6 +993,7 @@ POST /projects
| `only_allow_merge_if_pipeline_succeeds` | boolean | no | Set whether merge requests can only be merged with successful jobs |
| `only_allow_merge_if_pipeline_succeeds` | boolean | no | Set whether merge requests can only be merged with successful jobs |
| `only_allow_merge_if_all_discussions_are_resolved` | boolean | no | Set whether merge requests can only be merged when all the discussions are resolved |
| `only_allow_merge_if_all_discussions_are_resolved` | boolean | no | Set whether merge requests can only be merged when all the discussions are resolved |
| `merge_method` | string | no | Set the [merge method](#project-merge-method) used |
| `merge_method` | string | no | Set the [merge method](#project-merge-method) used |
| `autoclose_referenced_issues` | boolean | no | Set whether auto-closing referenced issues on default branch |
| `remove_source_branch_after_merge` | boolean | no | Enable `Delete source branch` option by default for all new merge requests |
| `remove_source_branch_after_merge` | boolean | no | Enable `Delete source branch` option by default for all new merge requests |
| `lfs_enabled` | boolean | no | Enable LFS |
| `lfs_enabled` | boolean | no | Enable LFS |
| `request_access_enabled` | boolean | no | Allow users to request member access |
| `request_access_enabled` | boolean | no | Allow users to request member access |
...
@@ -1050,6 +1058,7 @@ POST /projects/user/:user_id
...
@@ -1050,6 +1058,7 @@ POST /projects/user/:user_id
| `only_allow_merge_if_pipeline_succeeds` | boolean | no | Set whether merge requests can only be merged with successful jobs |
| `only_allow_merge_if_pipeline_succeeds` | boolean | no | Set whether merge requests can only be merged with successful jobs |
| `only_allow_merge_if_all_discussions_are_resolved` | boolean | no | Set whether merge requests can only be merged when all the discussions are resolved |
| `only_allow_merge_if_all_discussions_are_resolved` | boolean | no | Set whether merge requests can only be merged when all the discussions are resolved |
| `merge_method` | string | no | Set the [merge method](#project-merge-method) used |
| `merge_method` | string | no | Set the [merge method](#project-merge-method) used |
| `autoclose_referenced_issues` | boolean | no | Set whether auto-closing referenced issues on default branch |
| `remove_source_branch_after_merge` | boolean | no | Enable `Delete source branch` option by default for all new merge requests |
| `remove_source_branch_after_merge` | boolean | no | Enable `Delete source branch` option by default for all new merge requests |
| `lfs_enabled` | boolean | no | Enable LFS |
| `lfs_enabled` | boolean | no | Enable LFS |
| `request_access_enabled` | boolean | no | Allow users to request member access |
| `request_access_enabled` | boolean | no | Allow users to request member access |
...
@@ -1113,6 +1122,7 @@ PUT /projects/:id
...
@@ -1113,6 +1122,7 @@ PUT /projects/:id
| `only_allow_merge_if_pipeline_succeeds` | boolean | no | Set whether merge requests can only be merged with successful jobs |
| `only_allow_merge_if_pipeline_succeeds` | boolean | no | Set whether merge requests can only be merged with successful jobs |
| `only_allow_merge_if_all_discussions_are_resolved` | boolean | no | Set whether merge requests can only be merged when all the discussions are resolved |
| `only_allow_merge_if_all_discussions_are_resolved` | boolean | no | Set whether merge requests can only be merged when all the discussions are resolved |
| `merge_method` | string | no | Set the [merge method](#project-merge-method) used |
| `merge_method` | string | no | Set the [merge method](#project-merge-method) used |
| `autoclose_referenced_issues` | boolean | no | Set whether auto-closing referenced issues on default branch |
| `remove_source_branch_after_merge` | boolean | no | Enable `Delete source branch` option by default for all new merge requests |
| `remove_source_branch_after_merge` | boolean | no | Enable `Delete source branch` option by default for all new merge requests |
| `lfs_enabled` | boolean | no | Enable LFS |
| `lfs_enabled` | boolean | no | Enable LFS |
| `request_access_enabled` | boolean | no | Allow users to request member access |
| `request_access_enabled` | boolean | no | Allow users to request member access |