restore changes
This commit is contained in:
parent
d9867229b9
commit
0e3dc12460
|
@ -32,6 +32,12 @@ namespace MediaBrowser.Api.System
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Route("/System/Ping", "POST")]
|
||||||
|
public class PingSystem : IReturnVoid
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Class RestartApplication
|
/// Class RestartApplication
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -104,6 +110,11 @@ namespace MediaBrowser.Api.System
|
||||||
_security = security;
|
_security = security;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public object Post(PingSystem request)
|
||||||
|
{
|
||||||
|
return _appHost.Name;
|
||||||
|
}
|
||||||
|
|
||||||
public object Get(GetServerLogs request)
|
public object Get(GetServerLogs request)
|
||||||
{
|
{
|
||||||
List<FileSystemMetadata> files;
|
List<FileSystemMetadata> files;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
|
||||||
//[assembly: AssemblyVersion("3.0.*")]
|
//[assembly: AssemblyVersion("3.0.*")]
|
||||||
[assembly: AssemblyVersion("3.0.5784.0")]
|
[assembly: AssemblyVersion("3.0.5800.3")]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user