cloutier--bird.makeup/src/BirdsiteLive/Controllers/InboxController.cs

30 lines
649 B
C#
Raw Normal View History

2020-03-21 03:29:36 -04:00
using System;
using System.Collections.Generic;
using System.IO;
2020-03-21 03:29:36 -04:00
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace BirdsiteLive.Controllers
{
[ApiController]
public class InboxController : ControllerBase
{
[Route("/inbox")]
[HttpPost]
public async Task<IActionResult> Inbox()
{
var r = Request;
using (var reader = new StreamReader(Request.Body))
{
var body = await reader.ReadToEndAsync();
}
2020-03-21 03:29:36 -04:00
throw new NotImplementedException();
}
}
}