Refactor onboarding and verification workflows.

Adjusted interaction types and state filters to better streamline onboarding and verification processes. Updated UI labels, navigation, and modal dialogs to reflect new terminology and improve usability. Enhanced filtering logic and added new interaction types to support the revised process.
This commit is contained in:
Andre Beging
2025-03-27 17:12:28 +01:00
parent 572a35fd3f
commit 19796928e7
15 changed files with 148 additions and 91 deletions

View File

@@ -90,6 +90,15 @@ namespace FoodsharingSiegen.Contracts.Entity
Admin = 300
}
public enum ProspectStateFilter
{
OnBoarding = 10,
Verification = 20,
Completed = 30
}
/// <summary>
/// The user group enum
/// </summary>
@@ -190,6 +199,16 @@ namespace FoodsharingSiegen.Contracts.Entity
/// <summary>
/// The complete interaction type
/// </summary>
Complete = 70
Complete = 70,
/// <summary>
/// The StepInBriefing interaction type
/// </summary>
StepInBriefing = 80,
/// <summary>
/// The StepInBriefing interaction type
/// </summary>
ReleasedForVerification = 90
}
}