Skip to content

Commit

Permalink
Change config to public in tldraw-board.repo.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
blazejpass committed Nov 2, 2023
1 parent e1ddad5 commit d1b24cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/server/src/modules/tldraw/repo/tldraw-board.repo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class TldrawBoardRepo {

public mdb: MongodbPersistence;

constructor(private readonly configService: ConfigService<TldrawConfig, true>) {
constructor(public readonly configService: ConfigService<TldrawConfig, true>) {
this.connectionString = this.configService.get<string>('CONNECTION_STRING');
this.collectionName = this.configService.get<string>('TLDRAW_DB_COLLECTION_NAME') ?? 'drawings';
this.flushSize = this.configService.get<number>('TLDRAW_DB_FLUSH_SIZE') ?? 400;
Expand Down

0 comments on commit d1b24cc

Please sign in to comment.