allow share endpoint to return multiple frontends; more frontend selection (#110)

This commit is contained in:
Michael Quigley
2022-12-06 12:00:25 -05:00
parent 081a558ba2
commit a0c50c68e5
10 changed files with 134 additions and 28 deletions

View File

@ -463,6 +463,9 @@ func init() {
"401": {
"description": "unauthorized"
},
"404": {
"description": "not found"
},
"500": {
"description": "internal server error",
"schema": {
@ -967,8 +970,11 @@ func init() {
"shareResponse": {
"type": "object",
"properties": {
"frontendProxyEndpoint": {
"type": "string"
"frontendProxyEndpoints": {
"type": "array",
"items": {
"type": "string"
}
},
"svcToken": {
"type": "string"
@ -1502,6 +1508,9 @@ func init() {
"401": {
"description": "unauthorized"
},
"404": {
"description": "not found"
},
"500": {
"description": "internal server error",
"schema": {
@ -2006,8 +2015,11 @@ func init() {
"shareResponse": {
"type": "object",
"properties": {
"frontendProxyEndpoint": {
"type": "string"
"frontendProxyEndpoints": {
"type": "array",
"items": {
"type": "string"
}
},
"svcToken": {
"type": "string"