mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-10-30 17:55:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			471 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			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";
 | |
| }
 | 
