3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-03-04 07:29:22 +00:00

Implement test

This commit is contained in:
Marcus Moore
2025-02-20 12:51:08 -08:00
parent 992b4c7d86
commit f1bf9fcf5c
2 changed files with 2 additions and 2 deletions

View File

@ -12,6 +12,8 @@ class NotesController extends Controller
{
public function store(Request $request)
{
$this->authorize('update', Asset::class);
$validated = $request->validate([
'id' => 'required',
'note' => 'required|string|max:500',