##// END OF EJS Templates
fix: add UI settings to session
marcink -
r3911:7cca0d07 beta
parent child Browse files
Show More
@@ -645,11 +645,12 b' class DbManage(object):'
645 ('paths', '/', path),
645 ('paths', '/', path),
646 #('phases', 'publish', 'false')
646 #('phases', 'publish', 'false')
647 ]
647 ]
648 for section,key,value in ui_config:
648 for section, key, value in ui_config:
649 ui_conf = RhodeCodeUi()
649 ui_conf = RhodeCodeUi()
650 setattr(ui_conf, 'ui_section', section)
650 setattr(ui_conf, 'ui_section', section)
651 setattr(ui_conf, 'ui_key', key)
651 setattr(ui_conf, 'ui_key', key)
652 setattr(ui_conf, 'ui_value', value)
652 setattr(ui_conf, 'ui_value', value)
653 self.sa.add(ui_conf)
653
654
654 settings = [
655 settings = [
655 ('realm', 'RhodeCode authentication', unicode),
656 ('realm', 'RhodeCode authentication', unicode),
General Comments 0
You need to be logged in to leave comments. Login now