Switch to side-by-side view
--- a/Allura/allura/lib/app_globals.py +++ b/Allura/allura/lib/app_globals.py @@ -149,6 +149,13 @@ # Zarkov logger self._zarkov = None + @property + def director(self): + """Return activitystream director""" + if not hasattr(self, '_director'): + self._director = activitystream.director() + return self._director + @LazyProperty def director(self): """Return activitystream director"""