1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-04 01:24:09 +02:00

allow service names with - in them in proxy

This commit is contained in:
Robin Appelman 2026-03-09 17:48:57 +01:00
commit 85071d7aa1
2 changed files with 8 additions and 2 deletions

View file

@ -208,6 +208,8 @@ pub enum ServiceType {
Azure,
/// Ldap user backend
Ldap,
/// Ldap admin interface
LdapAdmin,
/// OnlyOffice
OnlyOffice,
/// Libre office online
@ -304,6 +306,9 @@ impl Service {
ServiceType::S3mb => Some(vec![Service::ObjectStore(ObjectStore::S3mb)]),
ServiceType::Azure => Some(vec![Service::ObjectStore(ObjectStore::Azure)]),
ServiceType::Ldap => Some(vec![Service::Ldap(Ldap), Service::LdapAdmin(LdapAdmin)]),
ServiceType::LdapAdmin => {
Some(vec![Service::Ldap(Ldap), Service::LdapAdmin(LdapAdmin)])
}
ServiceType::OnlyOffice => Some(vec![Service::OnlyOffice(OnlyOffice)]),
ServiceType::Office => Some(vec![Service::Office(Office)]),
ServiceType::Push => Some(vec![Service::Push(NotifyPush)]),