mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-22 20:23:49 +01:00
Fix indent
This commit is contained in:
parent
be23704d21
commit
29281f9cad
@ -54,25 +54,25 @@ export const meta = {
|
||||
};
|
||||
|
||||
const state: any = { // < https://github.com/Microsoft/TypeScript/issues/1863
|
||||
'admin': { isAdmin: true },
|
||||
'moderator': { isModerator: true },
|
||||
'adminOrModerator': {
|
||||
$or: [
|
||||
{ isAdmin: true },
|
||||
{ isModerator: true }
|
||||
]
|
||||
},
|
||||
'verified': { isVerified: true },
|
||||
'alive': {
|
||||
updatedAt: { $gt: new Date(Date.now() - 1000 * 60 * 60 * 24 * 5) }
|
||||
},
|
||||
[fallback]: {}
|
||||
'admin': { isAdmin: true },
|
||||
'moderator': { isModerator: true },
|
||||
'adminOrModerator': {
|
||||
$or: [
|
||||
{ isAdmin: true },
|
||||
{ isModerator: true }
|
||||
]
|
||||
},
|
||||
'verified': { isVerified: true },
|
||||
'alive': {
|
||||
updatedAt: { $gt: new Date(Date.now() - 1000 * 60 * 60 * 24 * 5) }
|
||||
},
|
||||
[fallback]: {}
|
||||
};
|
||||
|
||||
const origin: any = { // < https://github.com/Microsoft/TypeScript/issues/1863
|
||||
'local': { host: null },
|
||||
'remote': { host: nonnull },
|
||||
[fallback]: {}
|
||||
'local': { host: null },
|
||||
'remote': { host: nonnull },
|
||||
[fallback]: {}
|
||||
};
|
||||
|
||||
const sort: any = { // < https://github.com/Microsoft/TypeScript/issues/1863
|
||||
|
Loading…
Reference in New Issue
Block a user