Ignore:
Timestamp:
10/26/25 20:52:35 (11 months ago)
Author:
stefansaveski <stefansaveski19@…>
Branches:
master
Children:
3347c1b, c2e73b6, cab02ad
Parents:
9538edc
Message:

Add JWT authentication and refactor namespaces

Introduced JWT-based authentication and authorization:

  • Configured JWT authentication in Program.cs with token validation.
  • Added [Authorize] attribute to a new getstring endpoint.

Refactored namespaces for consistency:

  • Updated namespaces from iknow_api.Core.* to iknow_api.*.

Enhanced middleware and dependency injection:

  • Registered IAuthService and IUserRepository.
  • Added app.UseAuthentication() and app.UseAuthorization().

Removed unused code and dependencies:

  • Deleted WeatherForecast class.
  • Cleaned up redundant imports.

Updated project dependencies to include JWT authentication library.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • iknow-api/iknow-api.csproj

    r9538edc re49c3ed  
    1010  <ItemGroup>
    1111    <PackageReference Include="BCrypt.Net-Next" Version="4.0.3" />
     12    <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.10" />
    1213    <PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.9" />
    1314    <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.10">
Note: See TracChangeset for help on using the changeset viewer.