18 lines
No EOL
343 B
C#
18 lines
No EOL
343 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
|
|
namespace Iceshrimp.Backend.Pages;
|
|
|
|
public class TagModel : PageModel
|
|
{
|
|
public string Tag = null!;
|
|
|
|
public IActionResult OnGet(string tag)
|
|
{
|
|
if (Request.Cookies.ContainsKey("sessions"))
|
|
return Partial("Shared/FrontendSPA");
|
|
|
|
Tag = tag;
|
|
return Page();
|
|
}
|
|
} |