mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-09 20:12:10 +10:00
* feat: revise library source names & update droplet * feat: add internal name hint to library sources * feat: update library source table with new name + icons * fix: admin invitation localisation issue * feat: #164 * feat: overhaul task UIs, #163 * fix: remove debug task * fix: lint
23 lines
386 B
TypeScript
23 lines
386 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,
|
|
},
|
|
debug: {
|
|
concurrency: true,
|
|
},
|
|
} as const;
|
|
|
|
export type TaskGroup = keyof typeof taskGroups;
|