Skip to content

Commit

Permalink
Fixes #348 - remove constraints on license keys
Browse files Browse the repository at this point in the history
  • Loading branch information
snipe committed Nov 20, 2014
1 parent d6a0249 commit 1b41c97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/License.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class License extends Elegant
protected $softDelete = true;
protected $rules = array(
'name' => 'required|alpha_space|min:3|max:255',
'serial' => 'required|alpha_space|min:5|max:255',
'serial' => 'required|min:5|max:255',
'seats' => 'required|min:1|max:10000|integer',
'license_email' => 'email|min:0|max:120',
'license_name' => 'alpha_space|min:0|max:100',
Expand Down

0 comments on commit 1b41c97

Please sign in to comment.