mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-01-18 18:14:20 +01:00
13 lines
428 B
C#
13 lines
428 B
C#
using Microsoft.AspNetCore.Components;
|
|
using Microsoft.AspNetCore.Components.Web;
|
|
|
|
namespace DotBased.ASP.Auth;
|
|
|
|
public static class BasedAuthDefaults
|
|
{
|
|
public const string AuthenticationScheme = "DotBasedAuthentication";
|
|
public const string StorageKey = "dotbased_session";
|
|
|
|
public static IComponentRenderMode InteractiveServerWithoutPrerender { get; } =
|
|
new InteractiveServerRenderMode(prerender: false);
|
|
} |