22 lines
476 B
Ruby
22 lines
476 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: groups
|
|
#
|
|
# id :integer not null, primary key
|
|
# name :string(255) not null
|
|
# code :string(255) not null
|
|
# owner_id :integer not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
|
|
class Group < Namespace
|
|
def users
|
|
User.joins(:users_projects).where(users_projects: {project_id: project_ids}).uniq
|
|
end
|
|
|
|
def human_name
|
|
name
|
|
end
|
|
end
|