Minore code-style fixes

This commit is contained in:
Valeriy Sizov 2012-10-04 13:40:40 +03:00
parent 810d0903f8
commit 76c4e83193
4 changed files with 5 additions and 5 deletions

View file

@ -23,7 +23,7 @@ class Group < ActiveRecord::Base
delegate :name, to: :owner, allow_nil: true, prefix: true delegate :name, to: :owner, allow_nil: true, prefix: true
def self.search query def self.search query
where("name like :query OR code like :query", query: "%#{query}%") where("name LIKE :query OR code LIKE :query", query: "%#{query}%")
end end
def to_param def to_param

View file

@ -38,7 +38,7 @@ class Project < ActiveRecord::Base
end end
def self.search query def self.search query
where("name like :query OR code like :query OR path like :query", query: "%#{query}%") where("name LIKE :query OR code LIKE :query OR path LIKE :query", query: "%#{query}%")
end end
def self.create_by_user(params, user) def self.create_by_user(params, user)
@ -127,7 +127,7 @@ class Project < ActiveRecord::Base
end end
def commit_line_notes(commit) def commit_line_notes(commit)
notes.where(noteable_id: commit.id, noteable_type: "Commit").where("line_code is not null") notes.where(noteable_id: commit.id, noteable_type: "Commit").where("line_code IS NOT NULL")
end end
def public? def public?

View file

@ -73,7 +73,7 @@ class User < ActiveRecord::Base
end end
def self.search query def self.search query
where("name like :query or email like :query", query: "%#{query}%") where("name LIKE :query OR email LIKE :query", query: "%#{query}%")
end end
end end

View file

@ -19,7 +19,7 @@ module IssueCommonality
scope :opened, where(closed: false) scope :opened, where(closed: false)
scope :closed, where(closed: true) scope :closed, where(closed: true)
scope :of_group, ->(group) { where(project_id: group.project_ids) } scope :of_group, ->(group) { where(project_id: group.project_ids) }
scope :assigned, lambda { |u| where(assignee_id: u.id)} scope :assigned, ->(u) { where(assignee_id: u.id)}
delegate :name, delegate :name,
:email, :email,