mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 05:23:09 +02:00
commit
54eab4395a
3 changed files with 3 additions and 0 deletions
|
@ -59,6 +59,7 @@ export type IUser = {
|
||||||
is_suspended: boolean;
|
is_suspended: boolean;
|
||||||
keywords: string[];
|
keywords: string[];
|
||||||
host: string;
|
host: string;
|
||||||
|
host_lower: string;
|
||||||
account: {
|
account: {
|
||||||
keypair: string;
|
keypair: string;
|
||||||
email: string;
|
email: string;
|
||||||
|
|
|
@ -120,6 +120,7 @@ export default async (req: express.Request, res: express.Response) => {
|
||||||
username: username,
|
username: username,
|
||||||
username_lower: username.toLowerCase(),
|
username_lower: username.toLowerCase(),
|
||||||
host: null,
|
host: null,
|
||||||
|
host_lower: null,
|
||||||
account: {
|
account: {
|
||||||
keypair: generateKeypair(),
|
keypair: generateKeypair(),
|
||||||
token: secret,
|
token: secret,
|
||||||
|
|
1
tools/migration/shell.1522116710.user-host_lower.js
Normal file
1
tools/migration/shell.1522116710.user-host_lower.js
Normal file
|
@ -0,0 +1 @@
|
||||||
|
db.users.update({ }, { $set: { host_lower: null } }, { multi: true });
|
Loading…
Reference in a new issue