##// END OF EJS Templates
Also export config filename via extras.config in simplegit middleware (juste like for the simplehg one)
Vincent Caron -
r2858:dd2d5b65 beta
parent child Browse files
Show More
@@ -188,12 +188,14 b' class SimpleGit(BaseVCSController):'
188 188
189 189 # extras are injected into UI object and later available
190 190 # in hooks executed by rhodecode
191 from rhodecode import CONFIG
191 192 extras = {
192 193 'ip': ipaddr,
193 194 'username': username,
194 195 'action': action,
195 196 'repository': repo_name,
196 197 'scm': 'git',
198 'config': CONFIG['__file__'],
197 199 'make_lock': None,
198 200 'locked_by': [None, None]
199 201 }
General Comments 0
You need to be logged in to leave comments. Login now