1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-20 15:31:12 +00:00

Don't compare with Hash.

git-svn-id: http://svn.redmine.org/redmine/trunk@15670 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2016-07-16 09:41:24 +00:00
parent dca56a0350
commit 17aa2f68c2

View File

@ -35,7 +35,7 @@ class WatchersController < ApplicationController
def create def create
user_ids = [] user_ids = []
if params[:watcher].is_a?(Hash) if params[:watcher]
user_ids << (params[:watcher][:user_ids] || params[:watcher][:user_id]) user_ids << (params[:watcher][:user_ids] || params[:watcher][:user_id])
else else
user_ids << params[:user_id] user_ids << params[:user_id]
@ -54,7 +54,7 @@ class WatchersController < ApplicationController
end end
def append def append
if params[:watcher].is_a?(Hash) if params[:watcher]
user_ids = params[:watcher][:user_ids] || [params[:watcher][:user_id]] user_ids = params[:watcher][:user_ids] || [params[:watcher][:user_id]]
@users = User.active.visible.where(:id => user_ids).to_a @users = User.active.visible.where(:id => user_ids).to_a
end end