mirror of
https://github.com/bitwarden/server.git
synced 2024-11-21 12:05:42 +01:00
r
This commit is contained in:
parent
e77430823c
commit
8e79be49e8
@ -1,6 +1,4 @@
|
||||
using Bit.Api.Billing.Models.Responses;
|
||||
using Bit.Core.Billing.Services;
|
||||
using Bit.Core.Services;
|
||||
using Bit.Core.Services;
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Http.HttpResults;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
@ -10,8 +8,7 @@ namespace Bit.Api.Billing.Controllers;
|
||||
|
||||
[Authorize("Application")]
|
||||
public class StripeController(
|
||||
IStripeAdapter stripeAdapter,
|
||||
ITaxService taxService) : Controller
|
||||
IStripeAdapter stripeAdapter) : Controller
|
||||
{
|
||||
[HttpPost]
|
||||
[Route("~/setup-intent/bank-account")]
|
||||
@ -49,13 +46,4 @@ public class StripeController(
|
||||
|
||||
return TypedResults.Ok(setupIntent.ClientSecret);
|
||||
}
|
||||
|
||||
[HttpGet]
|
||||
[AllowAnonymous]
|
||||
[Route("~/tax/id-types")]
|
||||
public IResult GetTaxIdTypes()
|
||||
{
|
||||
var response = TaxIdTypesResponse.From(taxService.GetTaxIdTypes());
|
||||
return TypedResults.Ok(response);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user