My api rails has the route users / me that returns the data of the current user, it is written like this:
#routes
resources :usuarios do
get :mim, on: :collection
end
#controller
def mim
render json: usuario_atual
end
How can I access this route from api to ember to get user data?