diff --git a/Makefile b/Makefile index f834cfcb6..5f3189dc4 100644 --- a/Makefile +++ b/Makefile @@ -49,7 +49,7 @@ wire: check_go_env ##@Development Update Dependency Injection go run github.com/google/wire/cmd/wire@latest ./... .PHONY: wire -api: check_go_env ##@Development Generate Aura API Server Boilerplate +api: check_go_env ##@Development Generate New Native API Server Boilerplate go generate ./server/api/... .PHONY: api diff --git a/cmd/root.go b/cmd/root.go index 29c4fde68..415cf12f3 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -103,7 +103,7 @@ func startServer(ctx context.Context) func() error { if strings.HasPrefix(conf.Server.UILoginBackgroundURL, "/") { a.MountRouter("Background images", consts.DefaultUILoginBackgroundURL, backgrounds.NewHandler()) } - a.MountRouter("Aura API", consts.URLPathAPI, CreateAuraAPIRouter()) + a.MountRouter("New Native API", consts.URLPathAPI, CreateNewNativeAPIRouter()) return a.Run(ctx, conf.Server.Address, conf.Server.Port, conf.Server.TLSCert, conf.Server.TLSKey) } } diff --git a/cmd/wire_gen.go b/cmd/wire_gen.go index 3fc249262..47c01d948 100644 --- a/cmd/wire_gen.go +++ b/cmd/wire_gen.go @@ -45,7 +45,7 @@ func CreateNativeAPIRouter() *nativeapi.Router { return router } -func CreateAuraAPIRouter() *api.Router { +func CreateNewNativeAPIRouter() *api.Router { sqlDB := db.Db() dataStore := persistence.New(sqlDB) router := api.New(dataStore) diff --git a/cmd/wire_injectors.go b/cmd/wire_injectors.go index dea1ce9eb..ad444ee5c 100644 --- a/cmd/wire_injectors.go +++ b/cmd/wire_injectors.go @@ -48,7 +48,7 @@ func CreateNativeAPIRouter() *nativeapi.Router { )) } -func CreateAuraAPIRouter() *api.Router { +func CreateNewNativeAPIRouter() *api.Router { panic(wire.Build( allProviders, )) diff --git a/server/api/helpers.go b/server/api/helpers.go index 36d1bf078..632e8471b 100644 --- a/server/api/helpers.go +++ b/server/api/helpers.go @@ -76,7 +76,7 @@ func toArtistRelationship(id string, artist ArtistRole) TrackArtistRelationship Type: ResourceTypeArtist, Id: id, }, - Meta: struct{ Role ArtistRole }{Role: artist}, + Meta: ArtistMetaObject{Role: artist}, } }