Skip to content
Snippets Groups Projects
GroupModel.php 583 B
Newer Older
  • Learn to ignore specific revisions
  • use Myth\Auth\Authorization\GroupModel as MythAuthGroupModel;
    
    class GroupModel extends MythAuthGroupModel
    
        /**
         * @return mixed[]
         */
        public function getContributorRoles(): array
    
        {
            return $this->select('auth_groups.*')
                ->like('name', 'podcast_', 'after')
                ->findAll();
        }
    
    
        /**
         * @return mixed[]
         */
        public function getUserRoles(): array
    
        {
            return $this->select('auth_groups.*')
                ->notLike('name', 'podcast_', 'after')
                ->findAll();
        }
    }