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
parent
commit
5352321fe1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/config.rs

2
src/config.rs

@ -515,7 +515,7 @@ impl Config {
// (it doesn't contain any domains), or if it matches at least
// one domain.
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> {

Loading…
Cancel
Save