Kavita/API/Constants/PolicyConstants.cs
Joseph Milazzo 9c43833989
Bugfixes/misc (#196)
* Removed an error log statment which wasn't valid. Was showing error when a comicinfo.xml was not found in a directory.

* Fixed #191. Don't overwrite summary information if we already have something set from UI.

* Fixes #192

* Fixed #194 by moving the Take to after the query runs, so we take only distinct series.

* Added another case for Regex parsing for VanDread-v01-c01.zip
2021-05-02 19:46:34 -05:00

8 lines
No EOL
178 B
C#

namespace API.Constants
{
public static class PolicyConstants
{
public const string AdminRole = "Admin";
public const string PlebRole = "Pleb";
}
}