Skip to content

Commit

Permalink
feat: added more meta tags
Browse files Browse the repository at this point in the history
  • Loading branch information
mwargan committed Apr 15, 2024
1 parent 7ac9978 commit 36cf7cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Requests/StoreMarkerRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function rules()
'elevation' => 'nullable|numeric|between:-100000,100000',
'zoom' => 'nullable|numeric|between:0,20',
"expires_at" => ['nullable', 'date', 'after_or_equal:today'],
'meta' => 'nullable|array|max:10',
'meta' => 'nullable|array|max:25',
// Each meta tag must be a max of 255 characters
'meta.*' => ['nullable', 'max:255'],
'heading' => 'nullable|numeric|between:0,360',
Expand Down

0 comments on commit 36cf7cc

Please sign in to comment.