Compare commits

..

14 Commits

Author SHA1 Message Date
fb4270366c
RVRNEXT-11 add upcoming events for user 2023-05-28 11:29:36 +02:00
aefa5096dd
RVRNEXT-11 fix select in community members form 2023-05-28 11:29:36 +02:00
1e4655b6b6
RVRNEXT-11 style improvements 2023-05-28 11:29:36 +02:00
6237193d01
RVRNEXT-11 add custom title for main layout 2023-05-28 11:29:36 +02:00
8f8cbaebae
RVRNEXT-11 add upcoming events for community 2023-05-28 11:29:36 +02:00
a86a1be6a7
RVRNEXT-11 add event for transactions 2023-05-28 11:29:36 +02:00
caccafaba9
RVRNEXT-11 add views for events 2023-05-28 11:29:36 +02:00
720fb7b339
RVRNEXT-11 add controller for events 2023-05-28 11:29:36 +02:00
2fc5812eba
RVRNEXT-11 add new endpoints for events 2023-05-28 11:29:36 +02:00
63ca6e7557
RVRNEXT-11 add model and repository for events 2023-05-28 11:29:36 +02:00
224cdc0eda
RVRNEXT-11 add migrations for events 2023-05-28 11:29:35 +02:00
42da9eb778
Merge pull request 'bugfix/fixes-for-password-reset' (!53) from bugfix/fixes-for-password-reset into master
All checks were successful
rvr-nextgen/pipeline/head This commit looks good
Reviewed-on: #53
2023-05-26 16:08:50 +02:00
d1dee27191
reset grecaptcha in case of error
All checks were successful
rvr-nextgen/pipeline/pr-master This commit looks good
2023-05-08 18:48:43 +02:00
726b1818d0
fix error message for password reset request 2023-05-08 18:48:12 +02:00
2 changed files with 4 additions and 1 deletions

View File

@ -64,6 +64,9 @@ var RVR = {
formError.style.display = 'block';
formError.innerHTML = this.response.error.errorText;
if (typeof grecaptcha !== 'undefined') {
grecaptcha.reset();
}
return;
}

View File

@ -196,7 +196,7 @@ class LoginController
if ($user === null) {
return new JsonContent([
'error' => [
'errorText' => 'No user found with the given email address / username.'
'errorText' => 'No user found with the given email address.'
]
]);
}