Add remaining project files
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using DeluxeBackend.Models;
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using System.Security.Claims;
|
||||
using static DeluxeBackend.Controllers.Api.MessagesController;
|
||||
|
||||
namespace DeluxeBackend.Controllers.PlatformNotifications
|
||||
{
|
||||
[Route("PlatformNotifications/accounts")]
|
||||
[ApiController]
|
||||
public class AccountsController : ControllerBase
|
||||
{
|
||||
[HttpGet("{accId}/receives/GameplayInvites")]
|
||||
[Authorize]
|
||||
public async Task<IActionResult> ReceivesGameplayInvites(long accId)
|
||||
{
|
||||
return Ok(false);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user