mirror of
https://github.com/stashapp/stash.git
synced 2026-04-23 15:31:21 +02:00
* 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
37 lines
990 B
TypeScript
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",
|
|
}
|