mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-06-15 00:59:09 +00:00
feat(api): add /sync-from-legacy route (#192)
* feat(api): add /sync-from-legacy route * chore: remove extraneous dockerfile * chore: remove extraneous dockerfile build * chore: remove extraneous dockerfile build matrix
This commit is contained in:
parent
a983492154
commit
bfc96b0750
13 changed files with 209 additions and 6 deletions
|
@ -1,6 +1,6 @@
|
|||
export enum CategoryType {
|
||||
Single = 0,
|
||||
Multi,
|
||||
Multi = 0,
|
||||
Single = 1,
|
||||
}
|
||||
|
||||
export type Category = {
|
||||
|
|
|
@ -10,8 +10,9 @@ export type Guild = {
|
|||
};
|
||||
|
||||
export enum Features {
|
||||
None,
|
||||
None = 0,
|
||||
Preview = None,
|
||||
LegacyGuild = 1 << 1,
|
||||
}
|
||||
|
||||
export type GuildData = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue