1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-16 16:42:01 +00:00

Fix typo in app/controllers/watchers_controller.rb (#33567).

Patch by Pavel Rosický.


git-svn-id: http://svn.redmine.org/redmine/trunk@19823 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2020-06-16 09:06:42 +00:00
parent 4ba75b80ca
commit 81969c28b5

View File

@ -89,7 +89,7 @@ class WatchersController < ApplicationController
def find_project
if params[:object_type] && params[:object_id]
@watchables = find_objets_from_params
@watchables = find_objects_from_params
@projects = @watchables.map(&:project).uniq
if @projects.size == 1
@project = @projects.first
@ -100,7 +100,7 @@ class WatchersController < ApplicationController
end
def find_watchables
@watchables = find_objets_from_params
@watchables = find_objects_from_params
unless @watchables.present?
render_404
end
@ -133,7 +133,7 @@ class WatchersController < ApplicationController
users
end
def find_objets_from_params
def find_objects_from_params
klass = Object.const_get(params[:object_type].camelcase) rescue nil
return unless klass && klass.respond_to?('watched_by')