feat: random memories sort order (#20025)

This commit is contained in:
Jonathan Gilbert 2025-11-11 01:38:50 +11:00 committed by GitHub
parent 6c6b00067b
commit d92df63f84
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 218 additions and 12 deletions

View file

@ -71,6 +71,14 @@ export enum MemoryType {
OnThisDay = 'on_this_day',
}
export enum AssetOrderWithRandom {
// Include existing values
Asc = AssetOrder.Asc,
Desc = AssetOrder.Desc,
/** Randomly Ordered */
Random = 'random',
}
export enum Permission {
All = 'all',