-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support LOCK/UNLOCK verbs. #1610
Comments
It would only make sense to support WebDAV as a whole as these methods are defined in RFC 4918: HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV) This is more or less a duplicate of #1459 which requested WebDAV support, but went stale. A PR would definitely be welcome and considered for full WebDAV support. Go core libs shall be reused as much as possible though and dependencies must be kept to a minimum to avoid bloat. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Signed-off-by: yixy <youzhilane01@gmail.com>
closing, from v4.8.0 this is possible. See #2237 |
I'd like to add support for the LOCK/UNLOCK HTTP verbs as I am developing an application that expects to consume these verbs before synchronizing a conflicting operation on shared state. Prior to adding this support to Echo I'd like to gain some agreement that a patch will be accepted for this functionality as there is not an
http.MethodLock
constant in thenet/http
library. I can either add this method in the constants inecho.go
or I can add it inline.The text was updated successfully, but these errors were encountered: