Files
hamann-ausgabe-core/HaWeb/Settings/Features.cs
Simon Martens 2c88f22f8e Deployment v1
2023-09-12 01:59:52 +02:00

13 lines
471 B
C#

namespace HaWeb;
public static class Features {
// If Admin Pages are reachable
public const string AdminService = "AdminService";
// If uploaded Files can be published locally
public const string LocalPublishService = "LocalPublishService";
// If this Server can run a SyntaxCheck
public const string SyntaxCheck = "SyntaxCheck";
// If this Server shows live notifications & reload
public const string Notifications = "Notifications";
}