Any code examples for creating a Rails 3 controller for a WebDAV server?

I need to implement a dynamic WebDAV server that checks users for a user in a Rails 3 database and saves files uploaded through WebDAV to the database. Is there any code that does this and this can serve as an example?

+4
source share
1 answer

Look at the sources https://github.com/georgi/rack_dav , which does just that.

+1
source

Source: https://habr.com/ru/post/1345151/


All Articles