stash/ui/v2.5/src/components/List/views.ts
WithoutPants bede849fa6
Add sidebar to group list (#6573)
* Add group filter criteria to tag and studio
* Add sidebar to groups list
* Refactor ListOperations to accept buttons
* Move create new button back to navbar

Having the create new button with a plus icon conflicted with the add sub-group button in the sub-groups view.

* Simplify group-sub-groups view
2026-02-16 17:28:41 +11:00

37 lines
990 B
TypeScript

export enum View {
Galleries = "galleries",
Images = "images",
Scenes = "scenes",
Groups = "groups",
Performers = "performers",
Tags = "tags",
SceneMarkers = "scene_markers",
Studios = "studios",
TagMarkers = "tag_markers",
TagGalleries = "tag_galleries",
TagScenes = "tag_scenes",
TagImages = "tag_images",
TagPerformers = "tag_performers",
TagGroups = "tag_groups",
PerformerScenes = "performer_scenes",
PerformerGalleries = "performer_galleries",
PerformerImages = "performer_images",
PerformerGroups = "performer_groups",
PerformerAppearsWith = "performer_appears_with",
StudioGalleries = "studio_galleries",
StudioImages = "studio_images",
GalleryImages = "gallery_images",
StudioScenes = "studio_scenes",
StudioGroups = "studio_groups",
StudioPerformers = "studio_performers",
StudioChildren = "studio_children",
GroupScenes = "group_scenes",
GroupSubGroups = "group_sub_groups",
GroupPerformers = "group_performers",
}