mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-10 07:47:53 +00:00
Add member routes to API
This commit is contained in:
parent
4874879979
commit
9a5152a74c
8 changed files with 96 additions and 4 deletions
12
PluralKit.Core/Limits.cs
Normal file
12
PluralKit.Core/Limits.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
namespace PluralKit.Core {
|
||||
public static class Limits {
|
||||
public static readonly int MaxSystemNameLength = 100;
|
||||
public static readonly int MaxSystemTagLength = 31;
|
||||
public static readonly int MaxDescriptionLength = 1000;
|
||||
public static readonly int MaxMemberNameLength = 50;
|
||||
public static readonly int MaxPronounsLength = 100;
|
||||
|
||||
public static readonly long AvatarFileSizeLimit = 1024 * 1024;
|
||||
public static readonly int AvatarDimensionLimit = 1000;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue