mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-14 05:42:27 +00:00
* Refactor deserialization and more * Refactor authentication flow * Fix unit tests * Make deserialization better
14 lines
No EOL
393 B
C#
14 lines
No EOL
393 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 DeveloperController : Controller
|
|
{
|
|
[HttpGet("developer_videos")]
|
|
public IActionResult DeveloperVideos() => this.Ok("<videos></videos>");
|
|
} |