-
-
Notifications
You must be signed in to change notification settings - Fork 797
Closed
Labels
Description
I would like to be able to specify what mime types are supported via rest:
app.use('/users', UserService, {
json: true
});
// which might result in /users.json and /users/1.json being the routesand also create namespaced routes:
app.use('/users', UserService, {
json: true,
prefix: 'api'
});
// which might result in /api/users.json and /api/users/1.json being the routesSimilar idea to #86 but I don't think using the .setup() method is elegant or efficient.
Reactions are currently unavailable