New: Add application URL to host configuration settings

Fixes #2933
Closes #2934

(cherry picked from commit 762042ba97c2ae689cee32d8e66a458f6d7a8adc)
This commit is contained in:
Devin Buhl 2022-08-07 14:54:39 -04:00 committed by Qstick
parent 80143e0ae1
commit 878f415e21
5 changed files with 24 additions and 1 deletions

View file

@ -26,6 +26,7 @@ namespace Lidarr.Api.V1.Config
public string SslCertPassword { get; set; }
public string UrlBase { get; set; }
public string InstanceName { get; set; }
public string ApplicationUrl { get; set; }
public bool UpdateAutomatically { get; set; }
public UpdateMechanism UpdateMechanism { get; set; }
public string UpdateScriptPath { get; set; }
@ -82,7 +83,8 @@ namespace Lidarr.Api.V1.Config
CertificateValidation = configService.CertificateValidation,
BackupFolder = configService.BackupFolder,
BackupInterval = configService.BackupInterval,
BackupRetention = configService.BackupRetention
BackupRetention = configService.BackupRetention,
ApplicationUrl = configService.ApplicationUrl
};
}
}