[Swagger]Add /app/show

This commit is contained in:
Tosuke 2017-01-06 16:16:53 +09:00
parent 55f8cb4274
commit ac0824b574
2 changed files with 41 additions and 6 deletions

View file

@ -7,6 +7,36 @@ import * as mongo from 'mongodb';
import App from '../../models/app';
import serialize from '../../serializers/app';
/**
* @swagger
* /app/show:
* post:
* summary: Show an application's information
* description: Require app_id or name_id
* parameters:
* -
* name: app_id
* description: Application ID
* in: formData
* type: string
* -
* name: name_id
* description: Application unique name
* in: formData
* type: string
*
* responses:
* 200:
* description: Success
* schema:
* $ref: "#/definitions/Application"
*
* default:
* description: Failed
* schema:
* $ref: "#/definitions/Error"
*/
/**
* Show an app
*

View file

@ -7,6 +7,8 @@ const yaml = require('js-yaml');
const apiRoot = './src/api/endpoints';
const files = [
'users.js',
//app
'app/show.js',
//auth
'auth/accept.js',
//auth/session
@ -21,10 +23,9 @@ const defaultSwagger = {
"title": "Misskey API",
"version": "aoi"
},
"host": "api.misskey.local",
"host": "api.misskey.xyz",
"schemes": [
"http",
"ws"
"https"
],
"consumes": [
"application/x-www-form-urlencoded"
@ -33,7 +34,7 @@ const defaultSwagger = {
"application/json"
],
"responses": {
"parameters": {
"AccessToken": {
"name": "i",
"description": "Access Token",
@ -171,6 +172,10 @@ const defaultSwagger = {
"type": "string",
"description": "アプリケーションの名前"
},
"name_id": {
"type": "string",
"description": "アプリケーションのユニークな名前"
},
"description": {
"type": "string",
"description": "アプリケーションの説明"
@ -211,8 +216,8 @@ if(fs.existsSync('.config/config.yml')){
var config = yaml.safeLoad(fs.readFileSync('./.config/config.yml', 'utf8'));
options.swaggerDefinition.host = `api.${config.url}`;
options.swaggerDefinition.schemes = config.https.enable ?
['https', 'wss'] :
['http', 'ws'];
['https'] :
['http'];
}
var swaggerSpec = swaggerJSDoc(options);