Changeset c2e73b6 for iknow-api/Program.cs
- Timestamp:
- 10/28/25 10:49:02 (11 months ago)
- Branches:
- master
- Children:
- 4708118, ff202cf
- Parents:
- e49c3ed (diff), c155364 (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)
- File:
-
- 1 edited
-
iknow-api/Program.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
iknow-api/Program.cs
re49c3ed rc2e73b6 42 42 // Register your services 43 43 builder.Services.AddScoped<IAuthService, AuthService>(); 44 builder.Services.AddScoped<IUserRepository, UserRepository>(); // You'll need to add the UserRepository implementation 44 builder.Services.AddScoped<IRefreshTokenService, RefreshTokenService>(); 45 builder.Services.AddScoped<IUserRepository, UserRepository>(); 46 builder.Services.AddScoped<IRefreshTokenRepository, RefreshTokenRepository>(); 45 47 builder.Services.AddAuthorization(); 46 48 var app = builder.Build();
Note:
See TracChangeset
for help on using the changeset viewer.
