tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
OAuthGatewayStatusExtensions.cs
Go to the documentation of this file.
1using System;
2
4{
9 {
15 public static bool? ToBoolean(this OAuthGatewayStatus oAuthGatewayStatus)
16 => oAuthGatewayStatus switch
17 {
18 OAuthGatewayStatus.Disabled => null,
19 OAuthGatewayStatus.Enabled => false,
20 OAuthGatewayStatus.Only => true,
21 _ => throw new InvalidOperationException($"Invalid {nameof(OAuthGatewayStatus)}: {oAuthGatewayStatus}"),
22 };
23 }
24}
static ? bool ToBoolean(this OAuthGatewayStatus oAuthGatewayStatus)
Convert a given oAuthGatewayStatus to a Nullable<T> bool for API usage.
OAuthGatewayStatus
Status of the OAuth gateway for a provider.