Fixed that delete watcher link was broken by r11290 (#13231).
Deleting a watcher now use DELETE /watchers instead of POST /watchers/destroy. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11443 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
f8c649320f
commit
aca31973c2
|
@ -63,11 +63,11 @@ module WatchersHelper
|
||||||
:user_id => user}
|
:user_id => user}
|
||||||
s << ' '
|
s << ' '
|
||||||
s << link_to(image_tag('delete.png'), url,
|
s << link_to(image_tag('delete.png'), url,
|
||||||
:remote => true, :method => 'post', :style => "vertical-align: middle", :class => "delete")
|
:remote => true, :method => 'delete', :style => "vertical-align: middle", :class => "delete")
|
||||||
end
|
end
|
||||||
content << content_tag('li', s)
|
content << content_tag('li', s, :class => "user-#{user.id}")
|
||||||
end
|
end
|
||||||
content.present? ? content_tag('ul', content) : content
|
content.present? ? content_tag('ul', content, :class => 'watchers') : content
|
||||||
end
|
end
|
||||||
|
|
||||||
def watchers_checkboxes(object, users, checked=nil)
|
def watchers_checkboxes(object, users, checked=nil)
|
||||||
|
|
|
@ -82,7 +82,7 @@ RedmineApp::Application.routes.draw do
|
||||||
get 'watchers/new', :to => 'watchers#new'
|
get 'watchers/new', :to => 'watchers#new'
|
||||||
post 'watchers', :to => 'watchers#create'
|
post 'watchers', :to => 'watchers#create'
|
||||||
post 'watchers/append', :to => 'watchers#append'
|
post 'watchers/append', :to => 'watchers#append'
|
||||||
post 'watchers/destroy', :to => 'watchers#destroy'
|
delete 'watchers', :to => 'watchers#destroy'
|
||||||
get 'watchers/autocomplete_for_user', :to => 'watchers#autocomplete_for_user'
|
get 'watchers/autocomplete_for_user', :to => 'watchers#autocomplete_for_user'
|
||||||
# Specific routes for issue watchers API
|
# Specific routes for issue watchers API
|
||||||
post 'issues/:object_id/watchers', :to => 'watchers#create', :object_type => 'issue'
|
post 'issues/:object_id/watchers', :to => 'watchers#create', :object_type => 'issue'
|
||||||
|
|
|
@ -186,7 +186,7 @@ class WatchersControllerTest < ActionController::TestCase
|
||||||
def test_remove_watcher
|
def test_remove_watcher
|
||||||
@request.session[:user_id] = 2
|
@request.session[:user_id] = 2
|
||||||
assert_difference('Watcher.count', -1) do
|
assert_difference('Watcher.count', -1) do
|
||||||
xhr :post, :destroy, :object_type => 'issue', :object_id => '2', :user_id => '3'
|
xhr :delete, :destroy, :object_type => 'issue', :object_id => '2', :user_id => '3'
|
||||||
assert_response :success
|
assert_response :success
|
||||||
assert_match /watchers/, response.body
|
assert_match /watchers/, response.body
|
||||||
end
|
end
|
||||||
|
|
|
@ -32,7 +32,7 @@ class RoutingWatchersTest < ActionController::IntegrationTest
|
||||||
{ :controller => 'watchers', :action => 'create' }
|
{ :controller => 'watchers', :action => 'create' }
|
||||||
)
|
)
|
||||||
assert_routing(
|
assert_routing(
|
||||||
{ :method => 'post', :path => "/watchers/destroy" },
|
{ :method => 'delete', :path => "/watchers" },
|
||||||
{ :controller => 'watchers', :action => 'destroy' }
|
{ :controller => 'watchers', :action => 'destroy' }
|
||||||
)
|
)
|
||||||
assert_routing(
|
assert_routing(
|
||||||
|
|
|
@ -172,6 +172,19 @@ class Redmine::UiTest::IssuesTest < Redmine::UiTest::Base
|
||||||
assert_equal 'CF value', issue.custom_field_value(field)
|
assert_equal 'CF value', issue.custom_field_value(field)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_remove_issue_watcher_from_sidebar
|
||||||
|
user = User.find(3)
|
||||||
|
Watcher.create!(:watchable => Issue.find(1), :user => user)
|
||||||
|
|
||||||
|
log_user('jsmith', 'jsmith')
|
||||||
|
visit '/issues/1'
|
||||||
|
assert page.first('#sidebar').has_content?(user.name)
|
||||||
|
assert_difference 'Watcher.count', -1 do
|
||||||
|
page.first('ul.watchers .user-3 a.delete').click
|
||||||
|
end
|
||||||
|
assert page.first('#sidebar').has_no_content?(user.name)
|
||||||
|
end
|
||||||
|
|
||||||
def test_watch_issue_via_context_menu
|
def test_watch_issue_via_context_menu
|
||||||
log_user('jsmith', 'jsmith')
|
log_user('jsmith', 'jsmith')
|
||||||
visit '/issues'
|
visit '/issues'
|
||||||
|
|
Loading…
Reference in New Issue