mirror of
https://github.com/redmine/redmine.git
synced 2026-03-31 17:50:57 +02:00
Merge r22538 and r22539 from trunk to 5.1-stable (#39894).
git-svn-id: https://svn.redmine.org/redmine/branches/5.1-stable@22540 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -32,7 +32,12 @@ class WatchersController < ApplicationController
|
||||
accept_api_auth :create, :destroy
|
||||
|
||||
def new
|
||||
@users = users_for_new_watcher
|
||||
respond_to do |format|
|
||||
format.html { render_404 }
|
||||
format.js do
|
||||
@users = users_for_new_watcher
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def create
|
||||
|
||||
@@ -156,6 +156,12 @@ class WatchersControllerTest < Redmine::ControllerTest
|
||||
assert_match /ajax-modal/, response.body
|
||||
end
|
||||
|
||||
def test_new_as_html_should_respond_with_404
|
||||
@request.session[:user_id] = 2
|
||||
get :new, :params => {:object_type => 'issue', :object_id => '2'}
|
||||
assert_response 404
|
||||
end
|
||||
|
||||
def test_new_for_message
|
||||
@request.session[:user_id] = 2
|
||||
get :new, :params => {:object_type => 'message', :object_id => '1'}, :xhr => true
|
||||
|
||||
Reference in New Issue
Block a user