Skip to content
Snippets Groups Projects
Commit b0a49ac0 authored by srosse's avatar srosse
Browse files

OO-4646: limit the length of repository entries descriptions

parent a22074d2
No related branches found
No related tags found
No related merge requests found
...@@ -246,6 +246,8 @@ public class RepositoryEntryInfoController extends FormBasicController { ...@@ -246,6 +246,8 @@ public class RepositoryEntryInfoController extends FormBasicController {
} else { } else {
displayName.clearError(); displayName.clearError();
} }
allOk &= validateTextElement(description, 80000);
allOk &= validateTextElement(objectives, 2000); allOk &= validateTextElement(objectives, 2000);
allOk &= validateTextElement(requirements, 2000); allOk &= validateTextElement(requirements, 2000);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment