Skip to content

Commit

Permalink
[bugfix] attach bookmarks module to api (#1238)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmethurst authored Dec 9, 2022
1 parent 610c270 commit 04636a3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cmd/gotosocial/action/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ import (
"github.com/superseriousbusiness/gotosocial/internal/api/client/app"
"github.com/superseriousbusiness/gotosocial/internal/api/client/auth"
"github.com/superseriousbusiness/gotosocial/internal/api/client/blocks"
"github.com/superseriousbusiness/gotosocial/internal/api/client/bookmarks"
"github.com/superseriousbusiness/gotosocial/internal/api/client/emoji"
"github.com/superseriousbusiness/gotosocial/internal/api/client/favourites"
"github.com/superseriousbusiness/gotosocial/internal/api/client/fileserver"
Expand Down Expand Up @@ -180,6 +181,7 @@ var Start action.GTSAction = func(ctx context.Context) error {
fileServerModule := fileserver.New(processor)
adminModule := admin.New(processor)
statusModule := status.New(processor)
bookmarksModule := bookmarks.New(processor)
securityModule := security.New(dbService, oauthServer)
streamingModule := streaming.New(processor)
favouritesModule := favourites.New(processor)
Expand All @@ -203,6 +205,7 @@ var Start action.GTSAction = func(ctx context.Context) error {
fileServerModule,
adminModule,
statusModule,
bookmarksModule,
webfingerModule,
nodeInfoModule,
usersModule,
Expand Down

0 comments on commit 04636a3

Please sign in to comment.