WIP - Add system notifications for document upload progress/status

This commit is contained in:
Anton Stubenbord
2023-01-09 01:35:47 +01:00
parent 3c6c4e63d7
commit 8cf3020335
34 changed files with 615 additions and 44 deletions

View File

@@ -0,0 +1,8 @@
enum NotificationChannel {
task("task_channel", "Paperless Tasks");
final String id;
final String name;
const NotificationChannel(this.id, this.name);
}