diff --git a/README.md b/README.md index 972a71e72a1fb22ee2e33184ee3f769c7f2f4f69..370c6dcecd590c72cc7c0af5a423fceab632976f 100644 --- a/README.md +++ b/README.md @@ -167,19 +167,6 @@ If you need to extend it with you own relation use `USER_NESTED_FIELDS` on setti USER_NESTED_FIELDS=['skills'] ``` -Also, if you need to override the default permissions on User or Group use : - -``` -GROUP_PERMISSION_CLASSES=[CustomGroupPermission] -GROUP_ANONYMOUS_PERMISSIONS=['view'] -GROUP_AUTHENTICATED_PERMISSIONS=['inherit'] -GROUP_OWNER_PERMISSIONS=['view', 'control', 'update'] - -USER_ANONYMOUS_PERMISSIONS=['add', 'view'] -USER_AUTHENTICATED_PERMISSIONS=['inherit'] -USER_OWNER_PERMISSIONS=['inherit', 'control', 'update'] -``` - Finally, to expand on the `empty_containers` setting ([see DjangoLDP docs](https://git.startinblox.com/djangoldp-packages/djangoldp#custom-meta-options-on-models)) you can use `USER_EMPTY_CONTAINERS`: ```