mirror of
https://github.com/bitwarden/server.git
synced 2025-07-04 09:32:48 -05:00
Billing project
This commit is contained in:
14
src/Billing/Controllers/StripeController.cs
Normal file
14
src/Billing/Controllers/StripeController.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace Bit.Billing.Controllers
|
||||
{
|
||||
[Route("stripe")]
|
||||
public class StripeController : Controller
|
||||
{
|
||||
[HttpPost("webhook")]
|
||||
public void PostWebhook([FromBody]dynamic body)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user