Browse Source
Add more detail to invitation not found error
pull/318/head
Nick Fox
6 years ago
No known key found for this signature in database
GPG Key ID: 82719985805A7CA8
1 changed files with
1 additions and
1 deletions
-
src/api/core/organizations.rs
|
@ -531,7 +531,7 @@ fn reinvite_user(org_id: String, user_uuid: String, _data: JsonUpcase<InviteData |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
if Invitation::find_by_mail(&user.email, &conn).is_none() { |
|
|
if Invitation::find_by_mail(&user.email, &conn).is_none() { |
|
|
err!("No invitation found for user.")
|
|
|
err!("No invitation found for user to resend. Try inviting them first.")
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
let mut org_user_id = None; |
|
|
let mut org_user_id = None; |
|
|