dbe34684d8
* feat: new page layout + endpoint * feat: non-parallel mass import * feat: paginated admin library * feat: lint and performance improvement * feat: library filter util * feat: link frontend features to backend * fix: lint * fix: small fixes * feat: bump torrential * fix: lint
26 lines
436 B
TypeScript
26 lines
436 B
TypeScript
export const taskGroups = {
|
|
"cleanup:invitations": {
|
|
concurrency: false,
|
|
},
|
|
"cleanup:objects": {
|
|
concurrency: false,
|
|
},
|
|
"cleanup:sessions": {
|
|
concurrency: false,
|
|
},
|
|
"check:update": {
|
|
concurrency: false,
|
|
},
|
|
"import:game": {
|
|
concurrency: true,
|
|
},
|
|
"import:version": {
|
|
concurrency: true,
|
|
},
|
|
debug: {
|
|
concurrency: true,
|
|
},
|
|
} as const;
|
|
|
|
export type TaskGroup = keyof typeof taskGroups;
|