Module: Saucy::Project::ClassMethods

Defined in:
lib/saucy/project.rb

Instance Method Summary collapse

Instance Method Details

#by_nameObject



33
34
35
# File 'lib/saucy/project.rb', line 33

def by_name
  order("projects.name")
end

#visible_to(user) ⇒ Object



29
30
31
# File 'lib/saucy/project.rb', line 29

def visible_to(user)
  where(['projects.id IN(?)', user.project_ids])
end