Skip to content

Commit

Permalink
added missing readonly in auth service
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolovlazar committed Nov 1, 2024
1 parent 54c546b commit 82d783f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/infrastructure/services/authentication.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export class AuthenticationService implements IAuthenticationService {
private _lucia: Lucia;

constructor(
private _usersRepository: IUsersRepository,
private readonly _usersRepository: IUsersRepository,
private readonly instrumentationService: IInstrumentationService
) {
this._lucia = new Lucia(luciaAdapter, {
Expand Down

0 comments on commit 82d783f

Please sign in to comment.