diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2021-11-08 07:46:51 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-08 07:46:51 +0100 |
| commit | 0ee43f897b4c06c23cb741e85908527a46687769 (patch) | |
| tree | 20762ea3a72ff6ae8bdd65a501685216ee279f2b /MediaBrowser.Model/Configuration/ServerConfiguration.cs | |
| parent | 195831ad4a538e0a44714dfdc31bd007ab5c3e66 (diff) | |
| parent | 666e95e27f92eabb15d6ab7ae399bdbb95eeb318 (diff) | |
Merge pull request #5918 from crobibero/client-logger
Add endpoint to log client events
Diffstat (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index d1e999666..b79d18abd 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -459,5 +459,10 @@ namespace MediaBrowser.Model.Configuration /// Gets or sets a value indicating whether older plugins should automatically be deleted from the plugin folder. /// </summary> public bool RemoveOldPlugins { get; set; } + + /// <summary> + /// Gets or sets a value indicating whether clients should be allowed to upload logs. + /// </summary> + public bool AllowClientLogUpload { get; set; } = true; } } |
