feat: ship creator journey v2 and profile updates
This commit is contained in:
@@ -21,7 +21,7 @@ final class ArtworkTagsStoreRequest extends FormRequest
|
||||
public function rules(): array
|
||||
{
|
||||
return [
|
||||
'tags' => 'required|array|max:15',
|
||||
'tags' => 'required|array|max:' . (int) config('tags.max_user_tags', 30),
|
||||
'tags.*' => 'required|string|max:64',
|
||||
];
|
||||
}
|
||||
|
||||
@@ -21,7 +21,7 @@ final class ArtworkTagsUpdateRequest extends FormRequest
|
||||
public function rules(): array
|
||||
{
|
||||
return [
|
||||
'tags' => 'required|array|max:15',
|
||||
'tags' => 'required|array|max:' . (int) config('tags.max_user_tags', 30),
|
||||
'tags.*' => 'required|string|max:64',
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user