summary refs log tree commit diff
path: root/src/models/Channel.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/Channel.ts')
-rw-r--r--src/models/Channel.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/models/Channel.ts b/src/models/Channel.ts

index a77e492d..1dd05896 100644 --- a/src/models/Channel.ts +++ b/src/models/Channel.ts
@@ -1,7 +1,7 @@ import { Schema, model, Types, Document } from "mongoose"; import db from "../util/Database"; import toBigInt from "../util/toBigInt"; -import { UserModel } from "./User"; +import { PublicUserProjection, UserModel } from "./User"; // @ts-ignore export interface AnyChannel extends Channel, DMChannel, TextChannel, VoiceChannel { @@ -42,7 +42,7 @@ ChannelSchema.virtual("recipients", { localField: "recipient_ids", foreignField: "id", justOne: false, - autopopulate: true, + autopopulate: { select: PublicUserProjection }, }); ChannelSchema.set("removeResponse", ["recipient_ids"]);