chore(lint): Add missing semicolons
This commit is contained in:
parent
7231f5ff0b
commit
a3283c71ef
9 changed files with 26 additions and 26 deletions
|
@ -129,7 +129,7 @@ export default define(meta, async (ps, me) => {
|
|||
}
|
||||
|
||||
if (ps.host) {
|
||||
query.andWhere('instance.host like :host', { host: '%' + ps.host.toLowerCase() + '%' })
|
||||
query.andWhere('instance.host like :host', { host: '%' + ps.host.toLowerCase() + '%' });
|
||||
}
|
||||
|
||||
const instances = await query.take(ps.limit!).skip(ps.offset).getMany();
|
||||
|
|
|
@ -69,7 +69,7 @@ export default define(meta, async (ps, me) => {
|
|||
.andWhere('user.host LIKE :host', { host: ps.host.toLowerCase() + '%' });
|
||||
|
||||
if (ps.username) {
|
||||
q.andWhere('user.usernameLower like :username', { username: ps.username.toLowerCase() + '%' })
|
||||
q.andWhere('user.usernameLower like :username', { username: ps.username.toLowerCase() + '%' });
|
||||
}
|
||||
|
||||
q.andWhere('user.updatedAt IS NOT NULL');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue