Fine-grained permissions on SVN Repository
- by Jim
Hello,
I'm trying to setup a SVN repo for a whole bunch of users. Different users need to have different levels of access to areas of the repository. A trivial example might be that frontend engineers need access to the "view" and "controllers" but not "model", while backend engineers need access to the "controllers" and "model" but not "view".
It needs to be one repository, because (as far as I know) that's the only way to ensure that commits touching multiple modules are atomic.
Is there a fine-grained way to control user access to a repository?
Thanks!