mirror of https://github.com/stashapp/stash.git
Updated some file paths
This commit is contained in:
parent
59782a377f
commit
16ead91a05
|
@ -30,8 +30,8 @@ func Start() {
|
|||
// port = defaultPort
|
||||
//}
|
||||
|
||||
certsBox = packr.New("Cert Box", "../../certs")
|
||||
uiBox = packr.New("UI Box", "../../ui/v1/dist/stash-frontend")
|
||||
certsBox = packr.New("Cert Box", "../certs")
|
||||
uiBox = packr.New("UI Box", "../ui/v1/dist/stash-frontend")
|
||||
|
||||
r := chi.NewRouter()
|
||||
|
||||
|
|
20
gqlgen.yml
20
gqlgen.yml
|
@ -6,27 +6,27 @@
|
|||
schema:
|
||||
- schema/schema.graphql
|
||||
exec:
|
||||
filename: internal/models/generated_exec.go
|
||||
filename: models/generated_exec.go
|
||||
model:
|
||||
filename: internal/models/generated_models.go
|
||||
filename: models/generated_models.go
|
||||
resolver:
|
||||
filename: internal/api/resolver.go
|
||||
filename: api/resolver.go
|
||||
type: Resolver
|
||||
|
||||
struct_tag: gqlgen
|
||||
|
||||
models:
|
||||
Gallery:
|
||||
model: github.com/stashapp/stash/internal/models.Gallery
|
||||
model: github.com/stashapp/stash/models.Gallery
|
||||
Performer:
|
||||
model: github.com/stashapp/stash/internal/models.Performer
|
||||
model: github.com/stashapp/stash/models.Performer
|
||||
Scene:
|
||||
model: github.com/stashapp/stash/internal/models.Scene
|
||||
model: github.com/stashapp/stash/models.Scene
|
||||
SceneMarker:
|
||||
model: github.com/stashapp/stash/internal/models.SceneMarker
|
||||
model: github.com/stashapp/stash/models.SceneMarker
|
||||
ScrapedItem:
|
||||
model: github.com/stashapp/stash/internal/models.ScrapedItem
|
||||
model: github.com/stashapp/stash/models.ScrapedItem
|
||||
Studio:
|
||||
model: github.com/stashapp/stash/internal/models.Studio
|
||||
model: github.com/stashapp/stash/models.Studio
|
||||
Tag:
|
||||
model: github.com/stashapp/stash/internal/models.Tag
|
||||
model: github.com/stashapp/stash/models.Tag
|
||||
|
|
|
@ -11383,7 +11383,7 @@ func (ec *executionContext) introspectType(name string) (*introspection.Type, er
|
|||
}
|
||||
|
||||
var parsedSchema = gqlparser.MustLoadSchema(
|
||||
&ast.Source{Name: "schema.graphql", Input: `#######################################
|
||||
&ast.Source{Name: "schema/schema.graphql", Input: `#######################################
|
||||
# Gallery
|
||||
#######################################
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue