summaryrefslogtreecommitdiffstats
path: root/app/apis/sys_api.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2009-02-10 22:03:25 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2009-02-10 22:03:25 +0000
commit8cf3d7a4929ece2fd448d64e24e1e93cf2fbd58c (patch)
tree14fc2a67033728f4bddc2a673e581e0cbbcd5544 /app/apis/sys_api.rb
parentcf5658d7fe04a648f50547162d4594d60d8a47c3 (diff)
downloadredmine-8cf3d7a4929ece2fd448d64e24e1e93cf2fbd58c.tar.gz
redmine-8cf3d7a4929ece2fd448d64e24e1e93cf2fbd58c.zip
Replaces the repositories management SOAP API with a simple REST API.
reposman usage is unchanged but the script now requires activeresource. actionwebservice is now longer used and thus removed from plugins. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2435 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/apis/sys_api.rb')
-rw-r--r--app/apis/sys_api.rb33
1 files changed, 0 insertions, 33 deletions
diff --git a/app/apis/sys_api.rb b/app/apis/sys_api.rb
deleted file mode 100644
index fcee616b5..000000000
--- a/app/apis/sys_api.rb
+++ /dev/null
@@ -1,33 +0,0 @@
-# redMine - project management software
-# Copyright (C) 2006-2007 Jean-Philippe Lang
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-class AWSProjectWithRepository < ActionWebService::Struct
- member :id, :int
- member :identifier, :string
- member :name, :string
- member :is_public, :bool
- member :repository, Repository
-end
-
-class SysApi < ActionWebService::API::Base
- api_method :projects_with_repository_enabled,
- :expects => [],
- :returns => [[AWSProjectWithRepository]]
- api_method :repository_created,
- :expects => [:string, :string, :string],
- :returns => [:int]
-end