This is an automated email from the git hooks/post-receive script. New commit to branch feature/3642 in repository jredmine. See http://git.nuiton.org/jredmine.git commit 18f5a29c6a39bf96d463e1a768a3c6e665df29f9 Author: Tony CHEMIT <chemit@codelutin.com> Date: Wed Mar 4 08:49:17 2015 +0100 all request API are now ok to go --- .../redmine/jredmine-2.x/app/controllers/jredmine_controller.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jredmine-client/src/main/redmine/jredmine-2.x/app/controllers/jredmine_controller.rb b/jredmine-client/src/main/redmine/jredmine-2.x/app/controllers/jredmine_controller.rb index 37bd411..c53ae56 100644 --- a/jredmine-client/src/main/redmine/jredmine-2.x/app/controllers/jredmine_controller.rb +++ b/jredmine-client/src/main/redmine/jredmine-2.x/app/controllers/jredmine_controller.rb @@ -139,8 +139,8 @@ class JredmineController < ActionController::Base @r = [] for m in @members u = User.find(m[:user_id]) - u[:role_id] = m[:role_id] - u[:member_id] = m[:id] + # u[:roles] = m[:roles] FIXME No more exists in Redmine 3.0.0 + # u[:member_id] = m[:id] FIXME No more exists in Redmine 3.0.0 #TODO - should remove the hashed password ? @r << u end @@ -437,7 +437,7 @@ class JredmineController < ActionController::Base # recuperation des valeurs d'une enumeration def get_enumeration(type = params[:type]) #@result = Enumeration.get_values(type) - @result = Enumeration.find("type = ?", type) + @result = Enumeration.where("type = ?", type) render_array_result @result, "enumerations" end -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.