Ignore:
Timestamp:
10/26/25 20:52:35 (11 months ago)
Author:
stefansaveski <stefansaveski19@…>
Branches:
master
Children:
28759eb, 4e061d8, 4f5d8fd
Parents:
8e32210
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/Data/AppDbContext.cs

    r8e32210 r5eb7847  
    11using Microsoft.EntityFrameworkCore;
    2 using iknow_api.Core.Models;
     2using iknow_api.Models;
    33
    4 namespace iknow_api.Core.Data
     4namespace iknow_api.Data
    55{
    66    public class AppDbContext : DbContext
Note: See TracChangeset for help on using the changeset viewer.