mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-18 18:51:13 +10:00
* feat: historical tasks in database, better scheduling, and unified API for accessing tasks * feat: new UI for everything * fix: add translations and fix formatting
This commit is contained in:
@ -80,4 +80,10 @@ export const systemACLDescriptions: ObjectFromList<typeof systemACLs> = {
|
||||
"news:read": "Read news articles.",
|
||||
"news:create": "Create a new news article.",
|
||||
"news:delete": "Delete a news article.",
|
||||
|
||||
"task:read": "Read all tasks currently running on server.",
|
||||
"task:start": "Manually execute scheduled tasks.",
|
||||
|
||||
"maintenance:read":
|
||||
"Read tasks and maintenance information, like updates available and cleanup.",
|
||||
};
|
||||
|
||||
@ -74,6 +74,11 @@ export const systemACLs = [
|
||||
"news:read",
|
||||
"news:create",
|
||||
"news:delete",
|
||||
|
||||
"task:read",
|
||||
"task:start",
|
||||
|
||||
"maintenance:read",
|
||||
] as const;
|
||||
const systemACLPrefix = "system:";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user