2012-11-19 19:24:05 +01:00
|
|
|
# == Schema Information
|
|
|
|
#
|
2012-11-24 21:16:51 +01:00
|
|
|
# Table name: namespaces
|
2012-11-19 19:24:05 +01:00
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# name :string(255) not null
|
2012-11-24 21:16:51 +01:00
|
|
|
# path :string(255) not null
|
2012-11-19 19:24:05 +01:00
|
|
|
# owner_id :integer not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2012-11-24 21:16:51 +01:00
|
|
|
# type :string(255)
|
2012-11-19 19:24:05 +01:00
|
|
|
#
|
|
|
|
|
2012-11-22 19:34:16 +01:00
|
|
|
class Group < Namespace
|
2012-10-03 13:26:37 +02:00
|
|
|
def users
|
2012-11-29 05:29:11 +01:00
|
|
|
users = User.joins(:users_projects).where(users_projects: {project_id: project_ids})
|
|
|
|
users = users << owner
|
|
|
|
users.uniq
|
2012-10-03 13:26:37 +02:00
|
|
|
end
|
2012-11-23 05:11:09 +01:00
|
|
|
|
|
|
|
def human_name
|
|
|
|
name
|
|
|
|
end
|
2012-10-02 17:17:12 +02:00
|
|
|
end
|