Skip to content

Commit e022130

Browse files
committed
Increased text limit on notes
Signed-off-by: snipe <[email protected]>
1 parent b0fa059 commit e022130

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Http/Controllers/NotesController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function store(Request $request)
1616

1717
$validated = $request->validate([
1818
'id' => 'required',
19-
'note' => 'required|string|max:500',
19+
'note' => 'required|string|max:50000',
2020
'type' => [
2121
'required',
2222
Rule::in(['asset']),

0 commit comments

Comments
 (0)