Added FS Support & blocked non usable functionality in console (#880)

Co-authored-by: Benjamin Perez <benjamin@bexsoft.net>
Co-authored-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>
This commit is contained in:
Alex
2021-07-20 21:02:33 -05:00
committed by GitHub
parent c31af8bb8c
commit dd0b791d9d
42 changed files with 811 additions and 1170 deletions

View File

@@ -2886,62 +2886,6 @@ func init() {
}
}
},
"/subscription/refresh": {
"post": {
"tags": [
"AdminAPI"
],
"summary": "Refresh existing subscription license",
"operationId": "SubscriptionRefresh",
"responses": {
"200": {
"description": "A successful response.",
"schema": {
"$ref": "#/definitions/license"
}
},
"default": {
"description": "Generic error response.",
"schema": {
"$ref": "#/definitions/error"
}
}
}
}
},
"/subscription/validate": {
"post": {
"tags": [
"AdminAPI"
],
"summary": "Validates subscription license",
"operationId": "SubscriptionValidate",
"parameters": [
{
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/subscriptionValidateRequest"
}
}
],
"responses": {
"200": {
"description": "A successful response.",
"schema": {
"$ref": "#/definitions/license"
}
},
"default": {
"description": "Generic error response.",
"schema": {
"$ref": "#/definitions/error"
}
}
}
}
},
"/users": {
"get": {
"tags": [
@@ -4880,6 +4824,9 @@ func init() {
"sessionResponse": {
"type": "object",
"properties": {
"distributedMode": {
"type": "boolean"
},
"features": {
"type": "array",
"items": {
@@ -5058,20 +5005,6 @@ func init() {
}
}
},
"subscriptionValidateRequest": {
"type": "object",
"properties": {
"email": {
"type": "string"
},
"license": {
"type": "string"
},
"password": {
"type": "string"
}
}
},
"tier": {
"type": "object",
"properties": {
@@ -8284,62 +8217,6 @@ func init() {
}
}
},
"/subscription/refresh": {
"post": {
"tags": [
"AdminAPI"
],
"summary": "Refresh existing subscription license",
"operationId": "SubscriptionRefresh",
"responses": {
"200": {
"description": "A successful response.",
"schema": {
"$ref": "#/definitions/license"
}
},
"default": {
"description": "Generic error response.",
"schema": {
"$ref": "#/definitions/error"
}
}
}
}
},
"/subscription/validate": {
"post": {
"tags": [
"AdminAPI"
],
"summary": "Validates subscription license",
"operationId": "SubscriptionValidate",
"parameters": [
{
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/subscriptionValidateRequest"
}
}
],
"responses": {
"200": {
"description": "A successful response.",
"schema": {
"$ref": "#/definitions/license"
}
},
"default": {
"description": "Generic error response.",
"schema": {
"$ref": "#/definitions/error"
}
}
}
}
},
"/users": {
"get": {
"tags": [
@@ -10388,6 +10265,9 @@ func init() {
"sessionResponse": {
"type": "object",
"properties": {
"distributedMode": {
"type": "boolean"
},
"features": {
"type": "array",
"items": {
@@ -10566,20 +10446,6 @@ func init() {
}
}
},
"subscriptionValidateRequest": {
"type": "object",
"properties": {
"email": {
"type": "string"
},
"license": {
"type": "string"
},
"password": {
"type": "string"
}
}
},
"tier": {
"type": "object",
"properties": {