Adds an action to SysController to fetch changesets of one or all projects (#2925).
Exemples: * /sys/fetch_changesets (=> fetches changesets for all active projects) * /sys/fetch_changeseys?id=foo (=> fetches changesets for project foo only) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3107 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
4c2264ee42
commit
3d317a435b
|
@ -37,6 +37,23 @@ class SysController < ActionController::Base
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
def fetch_changesets
|
||||
projects = []
|
||||
if params[:id]
|
||||
projects << Project.active.has_module(:repository).find(params[:id])
|
||||
else
|
||||
projects = Project.active.has_module(:repository).find(:all, :include => :repository)
|
||||
end
|
||||
projects.each do |project|
|
||||
if project.repository
|
||||
project.repository.fetch_changesets
|
||||
end
|
||||
end
|
||||
render :nothing => true, :status => 200
|
||||
rescue ActiveRecord::RecordNotFound
|
||||
render :nothing => true, :status => 404
|
||||
end
|
||||
|
||||
protected
|
||||
|
||||
|
|
|
@ -53,4 +53,19 @@ class SysControllerTest < ActionController::TestCase
|
|||
assert r.is_a?(Repository::Subversion)
|
||||
assert_equal 'file:///create/project/repository/subproject2', r.url
|
||||
end
|
||||
|
||||
def test_fetch_changesets
|
||||
get :fetch_changesets
|
||||
assert_response :success
|
||||
end
|
||||
|
||||
def test_fetch_changesets_one_project
|
||||
get :fetch_changesets, :id => 'ecookbook'
|
||||
assert_response :success
|
||||
end
|
||||
|
||||
def test_fetch_changesets_unknown_project
|
||||
get :fetch_changesets, :id => 'unknown'
|
||||
assert_response 404
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue