Skip to content

Commit

Permalink
fix args after merge in develop
Browse files Browse the repository at this point in the history
  • Loading branch information
kabeaty committed Nov 13, 2023
1 parent c2ed718 commit cdd59ca
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions server/src/core/server/graph/mutators/Comments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ export const Comments = (ctx: GraphContext) => ({
ctx.mongo,
ctx.redis,
ctx.config,
ctx.i18n,
ctx.cache.commentActions,
ctx.broker,
ctx.tenant,
Expand Down
2 changes: 2 additions & 0 deletions server/src/core/server/graph/mutators/DSAReports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export const DSAReports = (ctx: GraphContext) => ({
ctx.mongo,
ctx.redis,
ctx.config,
ctx.i18n,
ctx.cache.commentActions,
ctx.broker,
ctx.tenant,
Expand Down Expand Up @@ -75,6 +76,7 @@ export const DSAReports = (ctx: GraphContext) => ({
ctx.redis,
ctx.cache,
ctx.config,
ctx.i18n,
ctx.broker,
ctx.notifications,
ctx.tenant,
Expand Down
2 changes: 2 additions & 0 deletions server/src/core/server/services/comments/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,7 @@ export async function createIllegalContent(
mongo: MongoContext,
redis: AugmentedRedis,
config: Config,
i18n: I18n,
commentActionsCache: CommentActionsCache,
broker: CoralEventPublisherBroker,
tenant: Tenant,
Expand All @@ -436,6 +437,7 @@ export async function createIllegalContent(
mongo,
redis,
config,
i18n,
broker,
tenant,
{
Expand Down
3 changes: 3 additions & 0 deletions server/src/core/server/services/dsaReports/reports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import {
import { Tenant } from "coral-server/models/tenant";
import { rejectComment } from "coral-server/stacks";

import { I18n } from "../i18n";
import { InternalNotificationContext } from "../notifications/internal/context";
import { AugmentedRedis } from "../redis";

Expand Down Expand Up @@ -173,6 +174,7 @@ export async function makeDSAReportDecision(
redis: AugmentedRedis,
cache: DataCache,
config: Config,
i18n: I18n,
broker: CoralEventPublisherBroker,
notifications: InternalNotificationContext,
tenant: Tenant,
Expand All @@ -195,6 +197,7 @@ export async function makeDSAReportDecision(
redis,
cache,
config,
i18n,
broker,
notifications,
tenant,
Expand Down

0 comments on commit cdd59ca

Please sign in to comment.