createGroup() public method

Create a new user group
public createGroup ( array $post = [] ) : boolean
$post array
return boolean
Ejemplo n.º 1
0
 /**
  * Create a new group for users
  *
  * @route crew/groups/new
  */
 public function createGroup()
 {
     $post = $this->post(new NewGroupFilter());
     if (!empty($post)) {
         if ($this->account->createGroup($post)) {
             \Airship\redirect($this->airship_cabin_prefix . '/crew/groups');
         }
     }
     $this->lens('crew/group_new', ['active_link' => 'bridge-link-admin-crew-groups', 'groups' => $this->account->getGroupTree()]);
 }