Compare commits

..

2 commits

Author SHA1 Message Date
5b21bc47bd
fix: improve the comment back
Relates to #21
2024-09-29 20:07:01 +01:00
2db136a736
git: greater coverage in the git-ignore 2024-09-29 20:04:08 +01:00
2 changed files with 3 additions and 1 deletions

2
.gitignore vendored
View file

@ -2,11 +2,13 @@
/.idea
.env
*.env
result
/result
*.db
*.db.*
tmp/
tmp.*

View file

@ -59,7 +59,7 @@ pub mod link {
// check if email exists
let details = match get_server_member_email(&db, email).await {
None => {
return "Please check it is your preferred contact on https://ulwolves.ie/memberships/profile and that you are fully paid up.".to_string()
return "Please check it matches (including case) your preferred contact on https://ulwolves.ie/memberships/profile and that you are fully paid up.".to_string()
}
Some(x) => x,
};