mirror of
https://github.com/meineerde/redmine.git
synced 2026-03-11 03:33:07 +00:00
Merged r21614 to 5.0-stable (#37135).
git-svn-id: https://svn.redmine.org/redmine/branches/5.0-stable@21622 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
78036b902c
commit
9fb1c60ef2
@ -39,10 +39,13 @@ class ProjectQuery < Query
|
||||
|
||||
def self.default(project: nil, user: User.current)
|
||||
query = nil
|
||||
if user&.logged?
|
||||
query = find_by_id user.pref.default_project_query
|
||||
if user&.logged? && (query_id = user.pref.default_project_query).present?
|
||||
query = find_by(id: query_id)
|
||||
end
|
||||
query || find_by_id(Setting.default_project_query)
|
||||
if query.nil? && (query_id = Setting.default_project_query).present?
|
||||
query = find_by(id: query_id)
|
||||
end
|
||||
query
|
||||
end
|
||||
|
||||
def initialize(attributes=nil, *args)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user