diff options
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index eded2b485..80774f4ad 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -501,8 +501,20 @@ export class DocumentOptions { cardSort?: STRt = new StrInfo('way cards are sorted in deck view'); customSortNumber?: NUMt = new NumInfo('number of custom sorts the user has created'); - customHashMap?: List<string> + // customGroup1?: List<Doc> + // customGroup2?: List<Doc> + // customGroup3?: List<Doc> visibleGroupNumbers?: List<number> + custom1Group?: NUMt = new NumInfo('Which group a card is in for the 1st custom grouping'); + custom2Group?: NUMt = new NumInfo('Which group a card is in for the 2nd custom grouping'); + custom3Group?: NUMt = new NumInfo('Which group a card is in for the 3rd custom grouping'); + chatGroup?: NUMt = new NumInfo("Which group a card is in for the chat's grouping"); + chatAmGroups?: NUMt = new NumInfo("Number of cards created by chat sort"); + + + + + // card_sort_time?: BOOLt = new BoolInfo('whether sorting cards in deck view by time'); // card_sort_type?: BOOLt = new BoolInfo('whether sorting cards in deck view by type'); |