misskey/src/server/api/endpoints/i.ts
syuilo 0463c6bb0f
Refactor API (#4770)
* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* Update description.ts

* wip
2019-04-23 22:35:26 +09:00

33 lines
636 B
TypeScript

import define from '../define';
import { Users } from '../../../models';
import { types, bool } from '../../../misc/schema';
export const meta = {
stability: 'stable',
desc: {
'ja-JP': '自分のアカウント情報を取得します。'
},
tags: ['account'],
requireCredential: true,
params: {},
res: {
type: types.object,
optional: bool.false, nullable: bool.false,
ref: 'User',
},
};
export default define(meta, async (ps, user, app) => {
const isSecure = user != null && app == null;
return await Users.pack(user, user, {
detail: true,
includeHasUnreadNotes: true,
includeSecrets: isSecure
});
});