Skip to content

Commit 8a549a9

Browse files
committed
Make gen
1 parent b232f28 commit 8a549a9

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

coderd/apidoc/docs.go

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/apidoc/swagger.json

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/api/general.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,8 @@ curl -X GET http://coder-server:8080/api/v2/deployment/config \
162162
},
163163
"dangerous": {
164164
"allow_path_app_sharing": true,
165-
"allow_path_app_site_owner_access": true
165+
"allow_path_app_site_owner_access": true,
166+
"dev_app_security_key": "string"
166167
},
167168
"derp": {
168169
"config": {

docs/api/schemas.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1737,7 +1737,8 @@ CreateParameterRequest is a structure used to create a new parameter value for a
17371737
```json
17381738
{
17391739
"allow_path_app_sharing": true,
1740-
"allow_path_app_site_owner_access": true
1740+
"allow_path_app_site_owner_access": true,
1741+
"dev_app_security_key": "string"
17411742
}
17421743
```
17431744

@@ -1747,6 +1748,7 @@ CreateParameterRequest is a structure used to create a new parameter value for a
17471748
| ---------------------------------- | ------- | -------- | ------------ | ----------- |
17481749
| `allow_path_app_sharing` | boolean | false | | |
17491750
| `allow_path_app_site_owner_access` | boolean | false | | |
1751+
| `dev_app_security_key` | string | false | | |
17501752

17511753
## codersdk.DeploymentConfig
17521754

@@ -1794,7 +1796,8 @@ CreateParameterRequest is a structure used to create a new parameter value for a
17941796
},
17951797
"dangerous": {
17961798
"allow_path_app_sharing": true,
1797-
"allow_path_app_site_owner_access": true
1799+
"allow_path_app_site_owner_access": true,
1800+
"dev_app_security_key": "string"
17981801
},
17991802
"derp": {
18001803
"config": {
@@ -2138,7 +2141,8 @@ CreateParameterRequest is a structure used to create a new parameter value for a
21382141
},
21392142
"dangerous": {
21402143
"allow_path_app_sharing": true,
2141-
"allow_path_app_site_owner_access": true
2144+
"allow_path_app_site_owner_access": true,
2145+
"dev_app_security_key": "string"
21422146
},
21432147
"derp": {
21442148
"config": {

0 commit comments

Comments
 (0)