2012-10-02 17:17:12 +02:00
|
|
|
class Group < ActiveRecord::Base
|
|
|
|
attr_accessible :code, :name, :owner_id
|
|
|
|
|
|
|
|
has_many :projects
|
|
|
|
belongs_to :owner, class_name: "User"
|
|
|
|
|
|
|
|
validates :name, presence: true, uniqueness: true
|
|
|
|
validates :code, presence: true, uniqueness: true
|
2012-10-09 02:10:04 +02:00
|
|
|
validates :owner, presence: true
|
2012-10-02 18:01:40 +02:00
|
|
|
|
|
|
|
delegate :name, to: :owner, allow_nil: true, prefix: true
|
|
|
|
|
2012-10-03 12:42:17 +02:00
|
|
|
def self.search query
|
2012-10-04 12:40:40 +02:00
|
|
|
where("name LIKE :query OR code LIKE :query", query: "%#{query}%")
|
2012-10-03 12:42:17 +02:00
|
|
|
end
|
|
|
|
|
2012-10-02 18:01:40 +02:00
|
|
|
def to_param
|
|
|
|
code
|
|
|
|
end
|
2012-10-03 13:26:37 +02:00
|
|
|
|
|
|
|
def users
|
2012-10-09 02:10:04 +02:00
|
|
|
User.joins(:users_projects).where(users_projects: {project_id: project_ids}).uniq
|
2012-10-03 13:26:37 +02:00
|
|
|
end
|
2012-10-02 17:17:12 +02:00
|
|
|
end
|
2012-10-09 02:10:04 +02:00
|
|
|
|
|
|
|
# == 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
|
|
|
|
#
|
2012-10-09 10:14:17 +02:00
|
|
|
|