branch feature/3642 updated (730c593 -> 18f5a29)
This is an automated email from the git hooks/post-receive script. New change to branch feature/3642 in repository jredmine. See http://git.nuiton.org/jredmine.git from 730c593 use new ActiveRecord Query API new 18f5a29 all request API are now ok to go The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: 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 Summary of changes: .../redmine/jredmine-2.x/app/controllers/jredmine_controller.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
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>.
participants (1)
-
nuiton.org scm