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 ReceivesGameplayInvites(long accId) { return Ok(false); } } }