Updated group mode to show visible groups

• Updated:
- group mode to show visible groups
This commit is contained in:
mgabdev 2020-08-06 23:11:50 -05:00
parent 6fb9701f0d
commit e72cb27362
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ class Group < ApplicationRecord
def search_for(term, limit = 100, offset = 0)
pattern = sanitize_sql_like(term.strip) + '%'
Group.where('lower(title) like lower(?) AND is_archived=false', pattern)
Group.where('lower(title) like lower(?) AND is_archived=false AND is_visible=true', pattern)
.order(:title)
.limit(limit)
.offset(offset)