Skip to content

Commit

Permalink
fix: account dependencies with mongoclient
Browse files Browse the repository at this point in the history
  • Loading branch information
Fritz Seitz committed Dec 11, 2023
1 parent 0468fcf commit 2c4ff5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Bulwark.Auth.Repositories/MongoDbAccount.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ public class MongoDbAccount : IAccountRepository
private readonly IMongoCollection<VerificationModel>
_verificationCollection;
private readonly IMongoCollection<ForgotModel> _forgotCollection;
private readonly MongoClient _client;
private readonly IMongoClient _client;

public MongoDbAccount(MongoClient client, IMongoDatabase db, IEncrypt encrypt)
public MongoDbAccount(IMongoClient client, IMongoDatabase db, IEncrypt encrypt)
{
_client = client;
_accountCollection = db.GetCollection<AccountModel>("account");
Expand Down

0 comments on commit 2c4ff5a

Please sign in to comment.