diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-07-07 00:00:22 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-07-07 00:00:22 -0700 |
| commit | 152894146b72830e48e800721ea6160228a9bdc1 (patch) | |
| tree | 081a7e0c7988988d14583894c2f2ea80d2ab0538 /frontend/src/types | |
| parent | df79d68cb3cbec15e985fed8c0cabc484ef55e35 (diff) | |
generate sha-1 hash for chart on score import
Diffstat (limited to 'frontend/src/types')
| -rw-r--r-- | frontend/src/types/constants.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/frontend/src/types/constants.ts b/frontend/src/types/constants.ts index 1e44b21..b1309e9 100644 --- a/frontend/src/types/constants.ts +++ b/frontend/src/types/constants.ts @@ -4,6 +4,15 @@ export const EamuseImportInfo: Record<string, { scorePage: string }> = { }, }; +export const globalSkipKeys = [ + "id", + "internalname", + "internalName", + "gameInternalName", + "userId", + "chartId" +]; + export function getFilterOptions(game: string): { value: string; label: string }[] { switch (game) { case "dancerush": |
