mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-14 13:52:28 +00:00
* Refactor deserialization and more * Refactor authentication flow * Fix unit tests * Make deserialization better
14 lines
No EOL
359 B
C#
14 lines
No EOL
359 B
C#
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace LBPUnion.ProjectLighthouse.Servers.GameServer.Controllers;
|
|
|
|
[ApiController]
|
|
[Authorize]
|
|
[Route("LITTLEBIGPLANETPS3_XML/")]
|
|
[Produces("text/xml")]
|
|
public class StoreController : Controller
|
|
{
|
|
[HttpGet("promotions")]
|
|
public IActionResult Promotions() => this.Ok();
|
|
} |