Skip to content

Commit

Permalink
Reduce minimum group name length to 2 (from 3)
Browse files Browse the repository at this point in the history
eg: IT
  • Loading branch information
snipe committed Jun 12, 2019
1 parent 1d0d25d commit 30904dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Models/Group.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Group extends SnipeModel
protected $table = 'permission_groups';

public $rules = array(
'name' => 'required|min:3|max:255',
'name' => 'required|min:2|max:255',
);

/**
Expand Down

0 comments on commit 30904dd

Please sign in to comment.