- Move login and refresh endpoints under a unified /auth route group
- Relocate institution connection logic from /accounts to /institutions
- Implement GET /institutions/{id}/available to fetch real-time Plaid
accounts
- Introduce HttpRequestBuilder utility to streamline integration testing
- Enhance PlaidService with GetAccountsAsync to support account fetching
- Clean up global usings and project structure for better domain
isolation
36 lines
1.2 KiB
C#
36 lines
1.2 KiB
C#
global using System.IdentityModel.Tokens.Jwt;
|
|
global using System.Net;
|
|
global using System.Net.Http.Headers;
|
|
global using System.Net.Http.Json;
|
|
global using System.Security.Claims;
|
|
global using System.Security.Cryptography;
|
|
global using System.Text;
|
|
global using System.Text.Json;
|
|
|
|
global using AwesomeAssertions.Execution;
|
|
global using AwesomeAssertions.Primitives;
|
|
|
|
global using FiscalOS.API.Tests.Assertions;
|
|
global using FiscalOS.API.Tests.Infra;
|
|
global using FiscalOS.Core.Authentication;
|
|
global using FiscalOS.Core.Identity;
|
|
global using FiscalOS.Core.Security;
|
|
global using FiscalOS.Infra.Accounts.Plaid;
|
|
global using FiscalOS.Infra.Authentication;
|
|
global using FiscalOS.Infra.Data;
|
|
|
|
global using Going.Plaid;
|
|
global using Going.Plaid.Entity;
|
|
|
|
global using Microsoft.AspNetCore.Hosting;
|
|
global using Microsoft.AspNetCore.Mvc;
|
|
global using Microsoft.AspNetCore.Mvc.Testing;
|
|
global using Microsoft.AspNetCore.TestHost;
|
|
global using Microsoft.EntityFrameworkCore;
|
|
global using Microsoft.Extensions.Configuration;
|
|
global using Microsoft.Extensions.DependencyInjection;
|
|
global using Microsoft.Extensions.Logging;
|
|
global using Microsoft.Extensions.Options;
|
|
global using Microsoft.IdentityModel.Tokens;
|
|
|
|
global using Xunit.Sdk; |