Minore code-style fixes
This commit is contained in:
parent
810d0903f8
commit
76c4e83193
4 changed files with 5 additions and 5 deletions
|
@ -23,7 +23,7 @@ class Group < ActiveRecord::Base
|
|||
delegate :name, to: :owner, allow_nil: true, prefix: true
|
||||
|
||||
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
|
||||
|
||||
def to_param
|
||||
|
|
|
@ -38,7 +38,7 @@ class Project < ActiveRecord::Base
|
|||
end
|
||||
|
||||
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
|
||||
|
||||
def self.create_by_user(params, user)
|
||||
|
@ -127,7 +127,7 @@ class Project < ActiveRecord::Base
|
|||
end
|
||||
|
||||
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
|
||||
|
||||
def public?
|
||||
|
|
|
@ -73,7 +73,7 @@ class User < ActiveRecord::Base
|
|||
end
|
||||
|
||||
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
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ module IssueCommonality
|
|||
scope :opened, where(closed: false)
|
||||
scope :closed, where(closed: true)
|
||||
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,
|
||||
:email,
|
||||
|
|
Loading…
Reference in a new issue