You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The call for fetching a single entity is - baseApiUrl/entityname/id .
Where as my requirement is - baseApiUrl/entityname?id . Id should be passed as params .Is there way as how we could/change this ?
The text was updated successfully, but these errors were encountered:
You can try using a full request interceptor (documentation and use sample), but I'm not sure you can override the called URL. That's more a Restangular issue than a ng-admin one thus. :)
Note that Restangular doesn't allow to modify the URL (cf mgonto/restangular#603). The solution is to use a interceptor on Angular's $http service, as described in #711.
The call for fetching a single entity is - baseApiUrl/entityname/id .
Where as my requirement is - baseApiUrl/entityname?id . Id should be passed as params .Is there way as how we could/change this ?
The text was updated successfully, but these errors were encountered: