2026-02-12 13:12:14 -06:00
|
|
|
namespace FiscalOS.API.Accounts;
|
|
|
|
|
|
|
|
|
|
internal static class AccountsExtensions
|
|
|
|
|
{
|
|
|
|
|
private const string RouteGroupPrefix = "/accounts";
|
|
|
|
|
|
|
|
|
|
public static RouteGroupBuilder MapAccountsEndpoints(this WebApplication app)
|
|
|
|
|
{
|
2026-02-13 11:05:57 -06:00
|
|
|
var accountsGroup = app.MapGroup(RouteGroupPrefix)
|
|
|
|
|
.RequireAuthorization();
|
2026-02-12 13:12:14 -06:00
|
|
|
|
2026-02-13 11:05:57 -06:00
|
|
|
accountsGroup.MapAddEndpoint();
|
2026-02-12 13:12:14 -06:00
|
|
|
|
|
|
|
|
return accountsGroup;
|
|
|
|
|
}
|
|
|
|
|
}
|