So, I tried to overwrite the methode collection_path :

def collection_path(prefix_options = {}, query_options = nil)
        check_prefix_options(prefix_options)
        prefix_options, query_options = split_options(prefix_options) if 
query_options.nil?
        
"#{prefix(prefix_options)}#{collection_name}.#{format.extension}#{query_string(query_options)}"
      end
by

def collection_path(prefix_options = {}, query_options = nil)
        check_prefix_options(prefix_options)
        prefix_options, query_options = split_options(prefix_options) if 
query_options.nil?
        
"#{prefix(prefix_options)}#{collection_name}#{query_string(query_options)}"
      end

And now it's OK :) 
*GET http://diufvm31.unifr.ch:8090/CyberCoachServer/resources/users
--> 200 OK 1260 (1735.7ms)
*
*
*
...But :(
I have an other error now : 

> NoMethodError (undefined method `collect!' for #<Hash:0x1030aeed0>):
>   app/controllers/users_controller.rb:6:in `index'


Anyone has an idea

Thanks a lot for your support! 

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msg/rubyonrails-talk/-/UFNEBhzjJJUJ.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to