mirror of
https://github.com/openziti/zrok.git
synced 2025-08-19 04:06:18 +02:00
controller registration endpoint improvements (#50)
This commit is contained in:
@@ -222,7 +222,10 @@ func init() {
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "account created"
|
||||
"description": "account created",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/registerResponse"
|
||||
}
|
||||
},
|
||||
"404": {
|
||||
"description": "request not found"
|
||||
@@ -520,6 +523,14 @@ func init() {
|
||||
}
|
||||
}
|
||||
},
|
||||
"registerResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"token": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"service": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@@ -821,7 +832,10 @@ func init() {
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "account created"
|
||||
"description": "account created",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/registerResponse"
|
||||
}
|
||||
},
|
||||
"404": {
|
||||
"description": "request not found"
|
||||
@@ -1119,6 +1133,14 @@ func init() {
|
||||
}
|
||||
}
|
||||
},
|
||||
"registerResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"token": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"service": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
Reference in New Issue
Block a user