mirror of
https://github.com/immich-app/immich.git
synced 2026-06-05 06:15:24 -04:00
6b0fd89cd2
* refactor: partner-page * cleanup --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
27 lines
599 B
Dart
27 lines
599 B
Dart
enum SortOrder {
|
|
asc,
|
|
desc;
|
|
|
|
SortOrder reverse() {
|
|
return this == SortOrder.asc ? SortOrder.desc : SortOrder.asc;
|
|
}
|
|
}
|
|
|
|
enum TextSearchType { context, filename, description, ocr }
|
|
|
|
enum AssetVisibilityEnum { timeline, hidden, archive, locked }
|
|
|
|
enum ActionSource { timeline, viewer }
|
|
|
|
enum CleanupStep { selectDate, scan, delete }
|
|
|
|
enum AssetKeepType { none, photosOnly, videosOnly }
|
|
|
|
enum AssetDateAggregation { start, end }
|
|
|
|
enum SlideshowLook { contain, cover, blurredBackground }
|
|
|
|
enum SlideshowDirection { forward, backward, shuffle }
|
|
|
|
enum PartnerDirection { sharedBy, sharedWith }
|