diff options
author | Go MAEDA <maeda@farend.jp> | 2023-04-18 14:45:47 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2023-04-18 14:45:47 +0000 |
commit | 109962363437a7f5e9f724059a657f96dbe5de64 (patch) | |
tree | a5366541ed02c01b37ce1a7f2c103c801451ccd9 /app/controllers | |
parent | fae39a954207bd055f4fa492b4ed08de9efbaf62 (diff) | |
download | redmine-109962363437a7f5e9f724059a657f96dbe5de64.tar.gz redmine-109962363437a7f5e9f724059a657f96dbe5de64.zip |
Support "my bookmarks" in the search (#38459).
Patch by Go MAEDA.
git-svn-id: https://svn.redmine.org/redmine/trunk@22204 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/search_controller.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/controllers/search_controller.rb b/app/controllers/search_controller.rb index b9ff59e90..a13b9932e 100644 --- a/app/controllers/search_controller.rb +++ b/app/controllers/search_controller.rb @@ -49,6 +49,8 @@ class SearchController < ApplicationController nil when 'my_projects' User.current.projects + when 'bookmarks' + Project.where(id: User.current.bookmarked_project_ids) when 'subprojects' @project ? (@project.self_and_descendants.to_a) : nil else |