mirror of
https://github.com/stashapp/stash.git
synced 2025-12-07 17:02:38 +01:00
* Add grid view for tags * Add tag page * Import/export tags * Add tag name uniqueness checks * Fix styling on missing marker previews * Add trace loglevel * Add SQL trace * Add filter options for tags * Add tag sort by options * Add tag page keyboard shortcuts
15 lines
312 B
Go
15 lines
312 B
Go
package api
|
|
|
|
// https://stackoverflow.com/questions/40891345/fix-should-not-use-basic-type-string-as-key-in-context-withvalue-golint
|
|
|
|
type key int
|
|
|
|
const (
|
|
galleryKey key = 0
|
|
performerKey key = 1
|
|
sceneKey key = 2
|
|
studioKey key = 3
|
|
movieKey key = 4
|
|
ContextUser key = 5
|
|
tagKey key = 6
|
|
)
|