We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
To use different HTTP methods when mapping controllers, you can overwrite the goweb.DefaultHttpHandler().HttpMethodFor* variables.
goweb.DefaultHttpHandler().HttpMethodFor*
For example, to use POST for a deletes instead of DELETE, you could do this:
POST
DELETE
goweb.DefaultHttpHandler().HttpMethodForDeleteOne = gowebhttp.MethodPost goweb.DefaultHttpHandler().HttpMethodForDeleteMany = gowebhttp.MethodPost
There was an error while loading. Please reload this page.