mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-21 22:40:34 -04:00
* Warn the user about the dangers of refresh metadata and promote them to use a scan instead. * Removed presence hub and moved it over to message hub. When a library scan is in progress, now a spinner will show on manage libraries page. * Code cleanup
15 lines
565 B
C#
15 lines
565 B
C#
namespace API.SignalR
|
|
{
|
|
public static class SignalREvents
|
|
{
|
|
public const string UpdateVersion = "UpdateVersion";
|
|
public const string ScanSeries = "ScanSeries";
|
|
public const string RefreshMetadata = "RefreshMetadata";
|
|
public const string ScanLibrary = "ScanLibrary";
|
|
public const string SeriesAdded = "SeriesAdded";
|
|
public const string SeriesRemoved = "SeriesRemoved";
|
|
public const string ScanLibraryProgress = "ScanLibraryProgress";
|
|
public const string OnlineUsers = "OnlineUsers";
|
|
}
|
|
}
|