feat: add support for optional external auth providers (#12021)

This commit is contained in:
Kayla Washburn-Love
2024-02-21 11:18:38 -07:00
committed by GitHub
parent 78c9f82719
commit 475c3650ca
39 changed files with 1495 additions and 727 deletions

2
docs/api/schemas.md generated
View File

@ -5195,6 +5195,7 @@ AuthorizationObject can represent a "set" of objects, such as: all workspaces in
"display_icon": "string",
"display_name": "string",
"id": "string",
"optional": true,
"type": "string"
}
```
@ -5208,6 +5209,7 @@ AuthorizationObject can represent a "set" of objects, such as: all workspaces in
| `display_icon` | string | false | | |
| `display_name` | string | false | | |
| `id` | string | false | | |
| `optional` | boolean | false | | |
| `type` | string | false | | |
## codersdk.TemplateVersionParameter

2
docs/api/templates.md generated
View File

@ -2002,6 +2002,7 @@ curl -X GET http://coder-server:8080/api/v2/templateversions/{templateversion}/e
"display_icon": "string",
"display_name": "string",
"id": "string",
"optional": true,
"type": "string"
}
]
@ -2025,6 +2026,7 @@ Status Code **200**
| `» display_icon` | string | false | | |
| `» display_name` | string | false | | |
| `» id` | string | false | | |
| `» optional` | boolean | false | | |
| `» type` | string | false | | |
To perform this operation, you must be authenticated. [Learn more](authentication.md).