commit
54eab4395a
|
@ -59,6 +59,7 @@ export type IUser = {
|
|||
is_suspended: boolean;
|
||||
keywords: string[];
|
||||
host: string;
|
||||
host_lower: string;
|
||||
account: {
|
||||
keypair: string;
|
||||
email: string;
|
||||
|
|
|
@ -120,6 +120,7 @@ export default async (req: express.Request, res: express.Response) => {
|
|||
username: username,
|
||||
username_lower: username.toLowerCase(),
|
||||
host: null,
|
||||
host_lower: null,
|
||||
account: {
|
||||
keypair: generateKeypair(),
|
||||
token: secret,
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
db.users.update({ }, { $set: { host_lower: null } }, { multi: true });
|
Loading…
Reference in New Issue