Fix project filter for MR on dashboard
This commit is contained in:
parent
ba937b2b3d
commit
bfc359ca61
4 changed files with 22 additions and 9 deletions
|
@ -27,6 +27,6 @@ module DashboardHelper
|
||||||
items.opened
|
items.opened
|
||||||
end
|
end
|
||||||
|
|
||||||
items.where(assignee_id: current_user.id).count
|
items.cared(current_user).count
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -24,7 +24,13 @@ class Issue < ActiveRecord::Base
|
||||||
|
|
||||||
acts_as_taggable_on :labels
|
acts_as_taggable_on :labels
|
||||||
|
|
||||||
def self.open_for(user)
|
class << self
|
||||||
opened.assigned(user)
|
def cared(user)
|
||||||
|
where('assignee_id = :user', user: user.id)
|
||||||
|
end
|
||||||
|
|
||||||
|
def open_for(user)
|
||||||
|
opened.assigned(user)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -43,12 +43,19 @@ class MergeRequest < ActiveRecord::Base
|
||||||
validates :target_branch, presence: true
|
validates :target_branch, presence: true
|
||||||
validate :validate_branches
|
validate :validate_branches
|
||||||
|
|
||||||
def self.find_all_by_branch(branch_name)
|
|
||||||
where("source_branch LIKE :branch OR target_branch LIKE :branch", branch: branch_name)
|
|
||||||
end
|
|
||||||
|
|
||||||
def self.find_all_by_milestone(milestone)
|
class << self
|
||||||
where("milestone_id = :milestone_id", milestone_id: milestone)
|
def cared(user)
|
||||||
|
where('assignee_id = :user OR author_id = :user', user: user.id)
|
||||||
|
end
|
||||||
|
|
||||||
|
def find_all_by_branch(branch_name)
|
||||||
|
where("source_branch LIKE :branch OR target_branch LIKE :branch", branch: branch_name)
|
||||||
|
end
|
||||||
|
|
||||||
|
def find_all_by_milestone(milestone)
|
||||||
|
where("milestone_id = :milestone_id", milestone_id: milestone)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def human_state
|
def human_state
|
||||||
|
|
|
@ -267,7 +267,7 @@ class User < ActiveRecord::Base
|
||||||
end
|
end
|
||||||
|
|
||||||
def cared_merge_requests
|
def cared_merge_requests
|
||||||
MergeRequest.where("author_id = :id or assignee_id = :id", id: self.id)
|
MergeRequest.cared(self)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Remove user from all projects and
|
# Remove user from all projects and
|
||||||
|
|
Loading…
Reference in a new issue