user settings api update

This commit is contained in:
Čarodej
2022-05-04 07:20:15 +02:00
parent 4fc5ccd26d
commit 3d2e279afd
31 changed files with 148 additions and 104 deletions

View File

@@ -23,9 +23,9 @@ class UpdateUserProfileSettingsRequest extends FormRequest
public function rules()
{
return [
'name' => 'required|string',
'value' => 'sometimes|string',
'avatar' => 'sometimes|file',
'name' => 'string',
'value' => 'string|nullable',
];
}
}