Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix email maximum size on settings #1766

Merged
merged 1 commit into from
Sep 2, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix email maximum size on settings
  • Loading branch information
asbiin committed Sep 2, 2018
commit 9b48576128133125725e061b113611935beba95d
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ UNRELEASED CHANGES:
* Fix search with wrong search field
* Fix gift recipient relation
* Fix subscription cancel on account deletion
* Fix email maximum size on settings

RELEASED VERSIONS:

Expand Down
2 changes: 1 addition & 1 deletion app/Http/Requests/SettingsRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function rules()
return [
'first_name' => 'required|max:255',
'last_name' => 'required|max:255',
'email' => 'required|email|max:2083|unique:users,email,'.$this->id,
'email' => 'required|email|max:255|unique:users,email,'.$this->id,
'timezone' => '',
'layout' => '',
'locale' => '',
Expand Down