Introduced the `DisableStepIn` flag in AppSettings to toggle StepIn-related features. Updated UI components to conditionally render StepIn interactions and filtering options based on this flag. Refactored group permissions for interactions to include Ambassadors where applicable.
15 lines
296 B
C#
15 lines
296 B
C#
namespace FoodsharingSiegen.Contracts.Model
|
|
{
|
|
public class AppSettings
|
|
{
|
|
#region Public Properties
|
|
|
|
public bool DisableStepIn { get; set; }
|
|
|
|
public TermSettings Terms { get; set; } = new();
|
|
|
|
public bool TestMode { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
} |