mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-22 08:42:44 +01:00
20 lines
537 B
C#
20 lines
537 B
C#
using System.Diagnostics;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
|
|
namespace Phantom.Server.Web.Layout;
|
|
|
|
[AllowAnonymous]
|
|
[IgnoreAntiforgeryToken]
|
|
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
|
|
public class ErrorModel : PageModel {
|
|
public string? RequestId { get; set; }
|
|
|
|
public ErrorModel(ILogger<ErrorModel> logger) {}
|
|
|
|
public void OnGet() {
|
|
RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier;
|
|
}
|
|
}
|