mirror of
https://github.com/sim1222/misskey.git
synced 2025-08-06 16:53:58 +09:00
* wip * wip * Update abuse-user-reports.ts * Update files.ts * Update list-remote.ts * Update list.ts * Update show-users.ts * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * Update update.ts * Update search.ts * Update reactions.ts * Update search.ts * wip * wip * wip * wip * Update update.ts * Update relation.ts * Update available.ts * wip * wip * wip * Update packages/backend/src/server/api/define.ts Co-authored-by: Johann150 <johann.galle@protonmail.com> * Update define.ts * Update define.ts * typo * wip * wip * wip * wip * wip * wip * wip * wip * Update update.ts * wip * Update signup.ts * Update call.ts * minimum for limit * type * remove needless annotation * wip * Update signup.ts * wip * wip * fix * Update create.ts Co-authored-by: Johann150 <johann.galle@protonmail.com>
52 lines
1.1 KiB
TypeScript
52 lines
1.1 KiB
TypeScript
import define from '../../../define';
|
|
import { Users } from '@/models/index';
|
|
import { signup } from '../../../common/signup';
|
|
|
|
export const meta = {
|
|
tags: ['admin'],
|
|
|
|
res: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
ref: 'User',
|
|
properties: {
|
|
token: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
},
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
username: Users.localUsernameSchema,
|
|
password: Users.passwordSchema,
|
|
},
|
|
required: ['username', 'password'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, _me) => {
|
|
const me = _me ? await Users.findOneOrFail(_me.id) : null;
|
|
const noUsers = (await Users.count({
|
|
host: null,
|
|
})) === 0;
|
|
if (!noUsers && !me?.isAdmin) throw new Error('access denied');
|
|
|
|
const { account, secret } = await signup({
|
|
username: ps.username,
|
|
password: ps.password,
|
|
});
|
|
|
|
const res = await Users.pack(account, account, {
|
|
detail: true,
|
|
includeSecrets: true,
|
|
});
|
|
|
|
(res as any).token = secret;
|
|
|
|
return res;
|
|
});
|