You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
320 B
12 lines
320 B
// Copyright (c) Duende Software. All rights reserved.
|
|
// See LICENSE in the project root for license information.
|
|
|
|
|
|
namespace IdentitySvc.Pages.Logout;
|
|
|
|
public static class LogoutOptions
|
|
{
|
|
public static readonly bool ShowLogoutPrompt = true;
|
|
public static readonly bool AutomaticRedirectAfterSignOut = false;
|
|
}
|