- Add Docker Swarm deploy stack, CI workflow (.gitea), entrypoint script - Fix Dockerfile to build Nalu.Web (was pointing to old Nalu.Api path) - Add validate_name.md and other missing validators to prod - Add Stripe endpoints, HangfireDashboardAuth, InputGuard, NameLookupService - Add SuspiciousRateLimiter, En/ pages, Legal/ pages, Seguranca docs - Add Nalu.Jobs and Nalu.NameImporter projects (were untracked) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
14 lines
280 B
C#
14 lines
280 B
C#
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
|
|
namespace Nalu.Web.Pages.En;
|
|
|
|
public class EnPlaygroundModel : PageModel
|
|
{
|
|
public string? SelectedValidator { get; private set; }
|
|
|
|
public void OnGet(string? validator = null)
|
|
{
|
|
SelectedValidator = validator;
|
|
}
|
|
}
|