From cdf542108cd81b1e3f9ae39f9f866c9c9bbed5eb Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Dec 01 2017 14:18:49 +0000 Subject: Fix the doc about custom gitolite config --- 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