22 lines
626 B
C#
22 lines
626 B
C#
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);
|
|
}
|
|
}
|
|
}
|