diff --git a/doc/custom_gitolite_conf.rst b/doc/custom_gitolite_conf.rst index 6f03f20..a275005 100644 --- a/doc/custom_gitolite_conf.rst +++ b/doc/custom_gitolite_conf.rst @@ -21,6 +21,11 @@ As you can see it defines the following class:: def generate_acls(): pass + @classmethod + @abc.abstractmethod + def remove_acls(self, session, project): + pass + This will be the class you will have to inherit from in order to inject your own code. You will then declare an entry point in your `setup.py` following this