diff options
| author | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2020-11-04 20:17:41 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-04 20:17:41 +0000 |
| commit | ec245dce9074bd4fa64f1252f62d355e9185696c (patch) | |
| tree | 97f9fe31f10d42e167f6502bc1227a3006fec912 /MediaBrowser.Model/Configuration | |
| parent | f06e4826c764c1214478a741b0f93315a8bba76b (diff) | |
| parent | ad262fe8a65137b1678508435054be50b053f217 (diff) | |
Merge branch 'master' into NetworkPR2
Diffstat (limited to 'MediaBrowser.Model/Configuration')
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index a40105212..08bda14ba 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -426,5 +426,10 @@ namespace MediaBrowser.Model.Configuration /// Gets or sets the known proxies. /// </summary> public string[] KnownProxies { get; set; } = Array.Empty<string>(); + + /// <summary> + /// Gets or sets the number of days we should retain activity logs. + /// </summary> + public int? ActivityLogRetentionDays { get; set; } = 30; } -} +}
\ No newline at end of file |
