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
When you then use MapController, the HttpMethodFor* strings will be used for the HTTP methods, instead of the hard-coded built in ones.
MapController
HttpMethodFor*