Reputation: 1377
Is it possible in TFS 2013 to put a particular user in the Readers group for the team project but allow them to have Contributor permissions for a certain folder? It would look something like this:
$/Main - Read
$/Main/User - Read/Write
Or is it best to just give the user Contributor access for the whole team project?
Upvotes: 1
Views: 387
Reputation: 8343
Yes, you can set permission on TFVC up to a single file; for Git version control in TFS, you can control access to a repository or at most to a branch.
That said, it is correct to ask yourself if it is worthwhile, as every time you break inheritance on security you face more administrative work in the future. The leaner and simpler the configuration, the less work for the administrator.
Some scenarios where this make sense are:
Upvotes: 2