mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-22 06:50:32 -04:00
* Fixed a bug with getting continue point where there was a single volume unread and a later volume with chapters inside it, the chapters were being picked. * Fixed a bug where resuming from jump key wasn't working (develop) * Cleaned up the spacing
19 lines
625 B
C#
19 lines
625 B
C#
namespace API.Constants;
|
|
|
|
public static class ResponseCacheProfiles
|
|
{
|
|
public const string Images = "Images";
|
|
public const string Hour = "Hour";
|
|
public const string TenMinute = "10Minute";
|
|
public const string FiveMinute = "5Minute";
|
|
/// <summary>
|
|
/// 6 hour long cache as underlying API is expensive
|
|
/// </summary>
|
|
public const string Statistics = "Statistics";
|
|
/// <summary>
|
|
/// Instant is a very quick cache, because we can't bust based on the query params, but rather body
|
|
/// </summary>
|
|
public const string Instant = "Instant";
|
|
public const string Month = "Month";
|
|
}
|