You can now allow only specific methods. For example if you only want users to be able to post data, but not read nor delete data, you can do the following
register(app, {
methods: ["PUT"],
//...
});You can now allow only specific methods. For example if you only want users to be able to post data, but not read nor delete data, you can do the following
register(app, {
methods: ["PUT"],
//...
});