mirror of
https://github.com/bitwarden/server
synced 2025-12-17 00:33:23 +00: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