()
| 121 | } |
| 122 | |
| 123 | func (c *OAuth2Configs) IsZero() bool { |
| 124 | if c == nil { |
| 125 | return true |
| 126 | } |
| 127 | return c.Github == nil && c.OIDC == nil |
| 128 | } |
| 129 | |
| 130 | const ( |
| 131 | SignedOutErrorMessage = "You are signed out or your session has expired. Please sign in again to continue." |
no outgoing calls