Rename Syncplay to SyncPlay

This commit is contained in:
gion
2020-05-06 23:42:53 +02:00
parent 6e22e9222b
commit 8a6ec2fb71
22 changed files with 166 additions and 166 deletions

View File

@@ -1,9 +1,9 @@
namespace MediaBrowser.Model.Configuration
{
/// <summary>
/// Enum SyncplayAccess.
/// Enum SyncPlayAccess.
/// </summary>
public enum SyncplayAccess
public enum SyncPlayAccess
{
/// <summary>
/// User can create groups and join them.
@@ -16,7 +16,7 @@ namespace MediaBrowser.Model.Configuration
JoinGroups,
/// <summary>
/// Syncplay is disabled for the user.
/// SyncPlay is disabled for the user.
/// </summary>
None
}

View File

@@ -1,4 +1,4 @@
namespace MediaBrowser.Model.Syncplay
namespace MediaBrowser.Model.SyncPlay
{
/// <summary>
/// Class GroupInfoView.

View File

@@ -1,4 +1,4 @@
namespace MediaBrowser.Model.Syncplay
namespace MediaBrowser.Model.SyncPlay
{
/// <summary>
/// Class GroupUpdate.

View File

@@ -1,4 +1,4 @@
namespace MediaBrowser.Model.Syncplay
namespace MediaBrowser.Model.SyncPlay
{
/// <summary>
/// Enum GroupUpdateType.

View File

@@ -1,6 +1,6 @@
using System;
namespace MediaBrowser.Model.Syncplay
namespace MediaBrowser.Model.SyncPlay
{
/// <summary>
/// Class JoinGroupRequest.

View File

@@ -1,6 +1,6 @@
using System;
namespace MediaBrowser.Model.Syncplay
namespace MediaBrowser.Model.SyncPlay
{
/// <summary>
/// Class PlaybackRequest.

View File

@@ -1,4 +1,4 @@
namespace MediaBrowser.Model.Syncplay
namespace MediaBrowser.Model.SyncPlay
{
/// <summary>
/// Enum PlaybackRequestType

View File

@@ -1,4 +1,4 @@
namespace MediaBrowser.Model.Syncplay
namespace MediaBrowser.Model.SyncPlay
{
/// <summary>
/// Class SendCommand.

View File

@@ -1,4 +1,4 @@
namespace MediaBrowser.Model.Syncplay
namespace MediaBrowser.Model.SyncPlay
{
/// <summary>
/// Enum SendCommandType.

View File

@@ -1,4 +1,4 @@
namespace MediaBrowser.Model.Syncplay
namespace MediaBrowser.Model.SyncPlay
{
/// <summary>
/// Class UtcTimeResponse.

View File

@@ -81,10 +81,10 @@ namespace MediaBrowser.Model.Users
public string PasswordResetProviderId { get; set; }
/// <summary>
/// Gets or sets a value indicating what Syncplay features the user can access.
/// Gets or sets a value indicating what SyncPlay features the user can access.
/// </summary>
/// <value>Access level to Syncplay features.</value>
public SyncplayAccess SyncplayAccess { get; set; }
/// <value>Access level to SyncPlay features.</value>
public SyncPlayAccess SyncPlayAccess { get; set; }
public UserPolicy()
{
@@ -131,7 +131,7 @@ namespace MediaBrowser.Model.Users
EnableContentDownloading = true;
EnablePublicSharing = true;
EnableRemoteAccess = true;
SyncplayAccess = SyncplayAccess.CreateAndJoinGroups;
SyncPlayAccess = SyncPlayAccess.CreateAndJoinGroups;
}
}
}