Rename 'Deleted' state to 'Archived' and update related logic

Replaced 'Deleted' with 'Archived' across the codebase to better reflect the intent of the state. Adjusted related features, including filters, UI labels, navigation, and permissions. Introduced a 'Recent Activity' filter for improved activity tracking.
This commit is contained in:
Andre Beging
2025-04-02 08:40:38 +02:00
parent b7ba95b716
commit 6389da4bc1
10 changed files with 40 additions and 17 deletions

View File

@@ -7,6 +7,6 @@ namespace FoodsharingSiegen.Contracts.Enums
{
Default = 10,
Deleted = 20
Archived = 20
}
}

View File

@@ -10,6 +10,8 @@
public bool NoActivity { get; set; }
public bool RecentActivity { get; set; }
public bool DeletedOnly { get; set; }
}
}