aboutsummaryrefslogtreecommitdiff
path: root/rhodecode/model
diff options
context:
space:
mode:
authorGeorgy Redkozubov <georgy.redkozubov@linaro.org>2013-03-19 23:36:26 +0400
committerGeorgy Redkozubov <georgy.redkozubov@linaro.org>2013-03-19 23:36:26 +0400
commitd8e9daf300e4508e4cfb852bbbc14a63b1caceb3 (patch)
treea7e42be9462c43f5fcf3eea2ab880aaabdaa0d0c /rhodecode/model
parent637fcc9fc3f7f177097ed2c590d98a077cbeee26 (diff)
Added support for clone/pull operations using dumb http protocol.
Diffstat (limited to 'rhodecode/model')
-rw-r--r--rhodecode/model/forms.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/rhodecode/model/forms.py b/rhodecode/model/forms.py
index d7c9d38f..407a0577 100644
--- a/rhodecode/model/forms.py
+++ b/rhodecode/model/forms.py
@@ -283,6 +283,8 @@ def ApplicationUiSettingsForm():
extensions_hgsubversion = v.StringBoolean(if_missing=False)
extensions_hggit = v.StringBoolean(if_missing=False)
+ extensions_dumbgit = v.StringBoolean(if_missing=False)
+
return _ApplicationUiSettingsForm