Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SecurityService.Models/AccountOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Diagnostics.CodeAnalysis;

[ExcludeFromCodeCoverage]
public class AccountOptions
public static class AccountOptions
{
#region Fields

Expand Down
2 changes: 1 addition & 1 deletion SecurityService.Models/ConsentOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Diagnostics.CodeAnalysis;

[ExcludeFromCodeCoverage]
public class ConsentOptions
public static class ConsentOptions
{
#region Fields

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace IdentityServerHost.Pages.Login;

using System;

public class LoginOptions
public static class LoginOptions
{
public static readonly bool AllowLocalLogin = true;
public static readonly bool AllowRememberLogin = true;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

namespace IdentityServerHost.Pages.Logout;

public class LogoutOptions
public static class LogoutOptions
{
public static readonly bool ShowLogoutPrompt = true;
public static readonly bool AutomaticRedirectAfterSignOut = false;
Expand Down
2 changes: 1 addition & 1 deletion SecurityService.UserInterface/Pages/Ciba/ConsentOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace IdentityServerHost.Pages.Ciba;

public class ConsentOptions
public static class ConsentOptions
{
public static readonly bool EnableOfflineAccess = true;
public static readonly string OfflineAccessDisplayName = "Offline Access";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace IdentityServerHost.Pages.Consent;

public class ConsentOptions
public static class ConsentOptions
{
public static readonly bool EnableOfflineAccess = true;
public static readonly string OfflineAccessDisplayName = "Offline Access";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace IdentityServerHost.Pages.Device;

public class DeviceOptions
public static class DeviceOptions
{
public static readonly bool EnableOfflineAccess = true;
public static readonly string OfflineAccessDisplayName = "Offline Access";
Expand Down
Loading