update sync objects

This commit is contained in:
Luke Pulverenti
2014-12-11 01:20:28 -05:00
parent 4548e6598d
commit ea9e8b957c
95 changed files with 730 additions and 330 deletions

View File

@@ -10,7 +10,7 @@ namespace MediaBrowser.Server.Implementations.Sync
{
public string Name
{
get { return "Dummy Sync"; }
get { return "Test Sync"; }
}
public IEnumerable<SyncTarget> GetSyncTargets()
@@ -19,8 +19,8 @@ namespace MediaBrowser.Server.Implementations.Sync
{
new SyncTarget
{
Id = "mock".GetMD5().ToString("N"),
Name = "Mock Sync"
Id = GetType().Name.GetMD5().ToString("N"),
Name = Name
}
};
}