mirror of
https://github.com/bitwarden/server
synced 2026-02-08 12:40:08 +00:00
15 lines
286 B
C#
15 lines
286 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Bit.Billing.Controllers
|
|
{
|
|
[Route("stripe")]
|
|
public class StripeController : Controller
|
|
{
|
|
[HttpPost("webhook")]
|
|
public void PostWebhook([FromBody]dynamic body, [FromQuery] string key)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|