mirror of
https://github.com/openziti/zrok.git
synced 2025-08-16 19:01:16 +02:00
updated api spec to support permission mode and access grans (#432)
This commit is contained in:
@ -1562,6 +1562,12 @@ func init() {
|
||||
"shareRequest": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"accessGrants": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"authScheme": {
|
||||
"type": "string"
|
||||
},
|
||||
@ -1611,6 +1617,13 @@ func init() {
|
||||
"google"
|
||||
]
|
||||
},
|
||||
"permissionMode": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"open",
|
||||
"closed"
|
||||
]
|
||||
},
|
||||
"reserved": {
|
||||
"type": "boolean"
|
||||
},
|
||||
@ -3289,6 +3302,12 @@ func init() {
|
||||
"shareRequest": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"accessGrants": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"authScheme": {
|
||||
"type": "string"
|
||||
},
|
||||
@ -3338,6 +3357,13 @@ func init() {
|
||||
"google"
|
||||
]
|
||||
},
|
||||
"permissionMode": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"open",
|
||||
"closed"
|
||||
]
|
||||
},
|
||||
"reserved": {
|
||||
"type": "boolean"
|
||||
},
|
||||
|
Reference in New Issue
Block a user