Ignore:
Timestamp:
10/28/25 10:49:02 (11 months ago)
Author:
GitHub <noreply@…>
Branches:
master
Children:
1d32d5c, e423ff3
Parents:
5eb7847 (diff), 1e58098 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Boris Gjorgjievski <69085722+imbrsk@…> (10/28/25 10:49:02)
git-committer:
GitHub <noreply@…> (10/28/25 10:49:02)
Message:

Merge pull request #5 from stefansaveski/feature/refresh-token

Feature/refresh token

File:
1 edited

Legend:

Unmodified
Added
Removed
  • iknow-api/Program.cs

    r5eb7847 r28759eb  
    4242// Register your services
    4343builder.Services.AddScoped<IAuthService, AuthService>();
    44 builder.Services.AddScoped<IUserRepository, UserRepository>(); // You'll need to add the UserRepository implementation
     44builder.Services.AddScoped<IRefreshTokenService, RefreshTokenService>();
     45builder.Services.AddScoped<IUserRepository, UserRepository>();
     46builder.Services.AddScoped<IRefreshTokenRepository, RefreshTokenRepository>();
    4547builder.Services.AddAuthorization();
    4648var app = builder.Build();
Note: See TracChangeset for help on using the changeset viewer.