-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
13b0d1e
commit 32a79fd
Showing
40 changed files
with
669 additions
and
729 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 0 additions & 14 deletions
14
Src/4.EndPoints/WebApi.EndPoints/Controllers/CatalogItemController.cs
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
Src/4.EndPoints/WebApi.EndPoints/Controllers/HomeController.cs
This file was deleted.
Oops, something went wrong.
5 changes: 3 additions & 2 deletions
5
.../Controllers/Account/AccountController.cs → ...Controllers/Identity/AccountController.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
using MediatR; | ||
using WebApi.EndPoints.BaseWebApi.Controllers; | ||
|
||
namespace WebApi.EndPoints.Controllers.Account; | ||
namespace WebApi.EndPoints.Controllers.Identity; | ||
|
||
public class AccountController : BaseController | ||
{ | ||
public AccountController(IMediator mediator) : base(mediator) | ||
{ | ||
} | ||
} | ||
} | ||
|
15 changes: 15 additions & 0 deletions
15
Src/4.EndPoints/WebApi.EndPoints/Controllers/Identity/AuthenticateController.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using MediatR; | ||
using Microsoft.AspNetCore.Mvc; | ||
using WebApi.EndPoints.BaseWebApi.Controllers; | ||
using WebApi.EndPoints.Models.Identity.Authenticate; | ||
|
||
namespace WebApi.EndPoints.Controllers.Identity; | ||
|
||
public class AuthenticateController : BaseController | ||
{ | ||
public AuthenticateController(IMediator mediator) : base(mediator) | ||
{ | ||
} | ||
|
||
} | ||
|
12 changes: 12 additions & 0 deletions
12
Src/4.EndPoints/WebApi.EndPoints/Controllers/Identity/AuthorizationController.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using MediatR; | ||
using WebApi.EndPoints.BaseWebApi.Controllers; | ||
|
||
namespace WebApi.EndPoints.Controllers.Identity; | ||
|
||
public class AuthorizationController : BaseController | ||
{ | ||
public AuthorizationController(IMediator mediator) : base(mediator) | ||
{ | ||
} | ||
} | ||
|
62 changes: 0 additions & 62 deletions
62
Src/4.EndPoints/WebApi.EndPoints/Controllers/PersonController.cs
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
Src/4.EndPoints/WebApi.EndPoints/Controllers/Security/RoleController.cs
This file was deleted.
Oops, something went wrong.
45 changes: 0 additions & 45 deletions
45
Src/4.EndPoints/WebApi.EndPoints/Controllers/Security/UserController.cs
This file was deleted.
Oops, something went wrong.
59 changes: 0 additions & 59 deletions
59
Src/4.EndPoints/WebApi.EndPoints/DIContainers/AddApplicationServicesExtensions.cs
This file was deleted.
Oops, something went wrong.
48 changes: 0 additions & 48 deletions
48
Src/4.EndPoints/WebApi.EndPoints/DIContainers/AddDataAccessExtensions.cs
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
Src/4.EndPoints/WebApi.EndPoints/DIContainers/AddServicesExtensions.cs
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.