Skip to content

Commit

Permalink
chore: add flagResolver to constructor arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
daveleek committed Jul 8, 2024
1 parent 6315022 commit 1e98d58
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/lib/features/project/createProjectService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,12 @@ export const createProjectService = (
eventService,
);

const apiTokenStore = new ApiTokenStore(db, eventBus, getLogger);
const apiTokenStore = new ApiTokenStore(
db,
eventBus,
getLogger,
flagResolver,
);

const privateProjectChecker = createPrivateProjectChecker(db, config);

Expand Down

0 comments on commit 1e98d58

Please sign in to comment.