Skip to content

v0.12.0

Latest

Choose a tag to compare

@DanielJDufour DanielJDufour released this 13 Dec 16:31

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"],
    //...
});


v0.11.0...v0.12.0