feat: Improve notifications, add donation button, improved asn form field

This commit is contained in:
Anton Stubenbord
2023-03-06 22:21:14 +01:00
parent bd891a8658
commit 1172e54199
37 changed files with 985 additions and 305 deletions

View File

@@ -0,0 +1,9 @@
enum NotificationChannel {
task("task_channel", "Paperless tasks"),
documentDownload("document_download_channel", "Document downloads");
final String id;
final String name;
const NotificationChannel(this.id, this.name);
}