diff options
| author | Eric Reed <ebr@mediabrowser3.com> | 2013-02-26 17:19:45 -0500 |
|---|---|---|
| committer | Eric Reed <ebr@mediabrowser3.com> | 2013-02-26 17:19:45 -0500 |
| commit | 4b2cf29fe1714e2bdef1d75d1b3aefb2f29ab4f6 (patch) | |
| tree | d1e27ef0a40d9f5aa6e022496fa43b60d1dcba79 /MediaBrowser.Api/PluginService.cs | |
| parent | 1925288a860ccc3fcd7364432ac5057eccf044e0 (diff) | |
Move SecurityManager to BaseKernel/IKernel
Diffstat (limited to 'MediaBrowser.Api/PluginService.cs')
| -rw-r--r-- | MediaBrowser.Api/PluginService.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/MediaBrowser.Api/PluginService.cs b/MediaBrowser.Api/PluginService.cs index ab20e1875..3d975090b 100644 --- a/MediaBrowser.Api/PluginService.cs +++ b/MediaBrowser.Api/PluginService.cs @@ -203,9 +203,9 @@ namespace MediaBrowser.Api var result = new PluginSecurityInfo { - IsMBSupporter = kernel.PluginSecurityManager.IsMBSupporter, - SupporterKey = kernel.PluginSecurityManager.SupporterKey, - LegacyKey = kernel.PluginSecurityManager.LegacyKey + IsMBSupporter = kernel.SecurityManager.IsMBSupporter, + SupporterKey = kernel.SecurityManager.SupporterKey, + LegacyKey = kernel.SecurityManager.LegacyKey }; return ToOptimizedResult(result); @@ -221,8 +221,8 @@ namespace MediaBrowser.Api var info = _jsonSerializer.DeserializeFromStream<PluginSecurityInfo>(request.RequestStream); - kernel.PluginSecurityManager.SupporterKey = info.SupporterKey; - kernel.PluginSecurityManager.LegacyKey = info.LegacyKey; + kernel.SecurityManager.SupporterKey = info.SupporterKey; + kernel.SecurityManager.LegacyKey = info.LegacyKey; } /// <summary> |
