Skip to content

Commit

Permalink
allow registration without invite link
Browse files Browse the repository at this point in the history
if signups are allowed invited users should be able to complete their
registration even when they don't have the invite link at hand.
  • Loading branch information
stefan0xC committed Oct 5, 2022
1 parent 6fa6eb1 commit 757037d
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/api/core/accounts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,7 @@ async fn register(data: JsonUpcase<RegisterData>, conn: DbConn) -> EmptyResult {
let mut user = match User::find_by_mail(&email, &conn).await {
Some(user) => {
if !user.password_hash.is_empty() {
if CONFIG.is_signup_allowed(&email) {
err!("User already exists")
} else {
err!("Registration not allowed or user already exists")
}
err!("Registration not allowed or user already exists")
}

if let Some(token) = data.Token {
Expand All @@ -124,7 +120,7 @@ async fn register(data: JsonUpcase<RegisterData>, conn: DbConn) -> EmptyResult {
} else if EmergencyAccess::find_invited_by_grantee_email(&email, &conn).await.is_some() {
user
} else if CONFIG.is_signup_allowed(&email) {
err!("Account with this email already exists")
user
} else {
err!("Registration not allowed or user already exists")
}
Expand Down

0 comments on commit 757037d

Please sign in to comment.