Excessively long emails reported make server unresponsive. We could at some point, consider adding a configuration for sysadmins to bypass this setting on their instance if they want. Signed-off-by: fenn-cs <fenn25.fn@gmail.com>pull/44218/head
parent
03f269829f
commit
2792d8b3f5
@ -0,0 +1,36 @@ |
||||
/** |
||||
* @copyright Copyright (c) 2024 Fon E. Noel NFEBE <opensource@nfebe.com> |
||||
* |
||||
* @author Fon E. Noel NFEBE <opensource@nfebe.com> |
||||
* |
||||
* @license AGPL-3.0-or-later |
||||
* |
||||
* This program is free software: you can redistribute it and/or modify |
||||
* it under the terms of the GNU Affero General Public License as |
||||
* published by the Free Software Foundation, either version 3 of the |
||||
* License, or (at your option) any later version. |
||||
* |
||||
* This program is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
* GNU Affero General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU Affero General Public License |
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
* |
||||
*/ |
||||
|
||||
export default { |
||||
|
||||
computed: { |
||||
userNameInputLengthIs255() { |
||||
return this.user.length >= 255 |
||||
}, |
||||
userInputHelperText() { |
||||
if (this.userNameInputLengthIs255) { |
||||
return t('core', 'Email length is at max (255)') |
||||
} |
||||
return undefined |
||||
}, |
||||
}, |
||||
} |
||||
Loading…
Reference in new issue