forked from FoundKeyGang/FoundKey
[Swagger]Add response definitions
This commit is contained in:
parent
24b82c30e8
commit
2a0291e285
1 changed files with 23 additions and 2 deletions
25
swagger.js
25
swagger.js
|
@ -28,6 +28,29 @@ const defaultSwagger = {
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
|
|
||||||
|
"responses": {
|
||||||
|
"ShouldSecureKey": {
|
||||||
|
"name": "i",
|
||||||
|
"description": "secure key",
|
||||||
|
"in": "formData",
|
||||||
|
"required": true,
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"SecureKey": {
|
||||||
|
"name": "i",
|
||||||
|
"description": "secure key",
|
||||||
|
"in": "formData",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"NormalKey": {
|
||||||
|
"name": "_userkey",
|
||||||
|
"description": "normal key",
|
||||||
|
"in": "formData",
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
"definitions": {
|
"definitions": {
|
||||||
"Error": {
|
"Error": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
|
@ -173,8 +196,6 @@ const defaultSwagger = {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"responses": {},
|
|
||||||
"parameters": {},
|
|
||||||
"securityDefinitions": {},
|
"securityDefinitions": {},
|
||||||
"tags": []
|
"tags": []
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue