()
| 156 | } |
| 157 | |
| 158 | static async isCookieDomainSecurityDisabled(): Promise<boolean> { |
| 159 | await this.loadConfig(); |
| 160 | |
| 161 | return this.config.auth.skipCookieDomainSecurity; |
| 162 | } |
| 163 | |
| 164 | static async isEmailVerificationEnabled(): Promise<boolean> { |
| 165 | await this.loadConfig(); |
no test coverage detected