mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-21 03:15:45 -08:00
Reduce minimum group name length to 2 (from 3)
eg: IT
This commit is contained in:
parent
1d0d25db37
commit
30904dd019
|
@ -10,7 +10,7 @@ class Group extends SnipeModel
|
||||||
protected $table = 'permission_groups';
|
protected $table = 'permission_groups';
|
||||||
|
|
||||||
public $rules = array(
|
public $rules = array(
|
||||||
'name' => 'required|min:3|max:255',
|
'name' => 'required|min:2|max:255',
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue