misskey/src/api/endpoints/meta.ts

47 lines
1015 B
TypeScript
Raw Normal View History

2016-12-28 22:49:51 +00:00
/**
* Module dependencies
*/
2017-03-22 16:26:46 +00:00
import version from '../../version';
2017-03-03 11:06:47 +00:00
import config from '../../conf';
2016-12-28 22:49:51 +00:00
2017-01-06 14:39:57 +00:00
/**
* @swagger
* /meta:
* post:
* summary: Show the misskey's information
* responses:
* 200:
* description: Success
* schema:
* type: object
* properties:
* maintainer:
* description: maintainer's name
* type: string
* commit:
* description: latest commit's hash
* type: string
2017-02-27 07:18:47 +00:00
* secure:
2017-02-27 07:19:04 +00:00
* description: whether the server supports secure protocols
2017-01-06 14:39:57 +00:00
* type: boolean
2017-02-27 07:18:47 +00:00
*
2017-01-06 14:39:57 +00:00
* default:
* description: Failed
* schema:
* $ref: "#/definitions/Error"
*/
2016-12-28 22:49:51 +00:00
/**
* Show core info
*
2017-03-01 08:37:01 +00:00
* @param {any} params
* @return {Promise<any>}
2016-12-28 22:49:51 +00:00
*/
2017-03-03 19:28:38 +00:00
module.exports = (params) => new Promise(async (res, rej) => {
res({
maintainer: config.maintainer,
2017-03-17 15:02:41 +00:00
version: version,
2017-03-03 19:28:38 +00:00
secure: config.https.enable
2016-12-28 22:49:51 +00:00
});
2017-03-03 19:28:38 +00:00
});