Browse Source
Merge pull request #831 from mprasil/whitelist-fix
SIGNUPS_ALLOWED with no whitelist [fixes #830]
pull/866/head
Daniel García
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/config.rs
|
@ -515,7 +515,7 @@ impl Config { |
|
|
// (it doesn't contain any domains), or if it matches at least
|
|
|
// (it doesn't contain any domains), or if it matches at least
|
|
|
// one domain.
|
|
|
// one domain.
|
|
|
let whitelist_str = self.signups_domains_whitelist(); |
|
|
let whitelist_str = self.signups_domains_whitelist(); |
|
|
whitelist_str.is_empty() || whitelist_str.split(',').filter(|s| !s.is_empty()).any(|d| d == e[0]) |
|
|
( whitelist_str.is_empty() && CONFIG.signups_allowed() )|| whitelist_str.split(',').filter(|s| !s.is_empty()).any(|d| d == e[0]) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
pub fn delete_user_config(&self) -> Result<(), Error> { |
|
|
pub fn delete_user_config(&self) -> Result<(), Error> { |
|
|