Commit 8f003ece authored by GitLab Bot's avatar GitLab Bot

Automatic merge of gitlab-org/gitlab master

parents d36ce37d 8ba3b727
...@@ -529,7 +529,7 @@ POST /namespaces/:id/gitlab_subscription ...@@ -529,7 +529,7 @@ POST /namespaces/:id/gitlab_subscription
Example request: Example request:
```shell ```shell
curl --request POST --header "TOKEN: <admin_access_token>" "https://gitlab.com/api/v4/namespaces/1234/gitlab_subscription?start_date="2020-07-15"&plan="silver"&seats=10" curl --request POST --header "TOKEN: <admin_access_token>" "https://gitlab.com/api/v4/namespaces/1234/gitlab_subscription?start_date="2020-07-15"&plan="premium"&seats=10"
``` ```
Example response: Example response:
...@@ -537,8 +537,8 @@ Example response: ...@@ -537,8 +537,8 @@ Example response:
```json ```json
{ {
"plan": { "plan": {
"code":"silver", "code":"premium",
"name":"Silver", "name":"premium",
"trial":false, "trial":false,
"auto_renew":null, "auto_renew":null,
"upgradable":false "upgradable":false
...@@ -588,8 +588,8 @@ Example response: ...@@ -588,8 +588,8 @@ Example response:
```json ```json
{ {
"plan": { "plan": {
"code":"silver", "code":"premium",
"name":"Silver", "name":"premium",
"trial":false, "trial":false,
"auto_renew":null, "auto_renew":null,
"upgradable":false "upgradable":false
...@@ -627,8 +627,8 @@ Example response: ...@@ -627,8 +627,8 @@ Example response:
```json ```json
{ {
"plan": { "plan": {
"code":"silver", "code":"premium",
"name":"Silver", "name":"premium",
"trial":false, "trial":false,
"auto_renew":null, "auto_renew":null,
"upgradable":false "upgradable":false
......
...@@ -57,9 +57,7 @@ GitLab administrators can configure a new default branch name at the ...@@ -57,9 +57,7 @@ GitLab administrators can configure a new default branch name at the
### Instance-level custom initial branch name **(FREE SELF)** ### Instance-level custom initial branch name **(FREE SELF)**
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/221013) in GitLab 13.2. > - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/221013) in GitLab 13.2.
> - It's deployed behind a feature flag, enabled by default. > - [Feature flag removed](https://gitlab.com/gitlab-org/gitlab/-/issues/325163) in GitLab 13.12.
> - It cannot be enabled or disabled per-project.
> - It's recommended for production use.
GitLab [administrators](../../../permissions.md) of self-managed instances can GitLab [administrators](../../../permissions.md) of self-managed instances can
customize the initial branch for projects hosted on that instance. Individual customize the initial branch for projects hosted on that instance. Individual
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment