always open filter tab in raw mode, when 'Manually enter LDAP filters' is checked
This commit is contained in:
parent
7ab1f807fb
commit
fe237fd159
|
@ -237,6 +237,7 @@ OCA = OCA || {};
|
|||
* @inheritdoc
|
||||
*/
|
||||
onActivate: function() {
|
||||
this._super();
|
||||
this.considerFeatureRequests();
|
||||
},
|
||||
|
||||
|
|
|
@ -75,9 +75,13 @@ OCA = OCA || {};
|
|||
|
||||
/**
|
||||
* this is called by the main view, if the tab is being switched to.
|
||||
* The concrete tab view can implement this if necessary.
|
||||
*/
|
||||
onActivate: function() { },
|
||||
onActivate: function() {
|
||||
if(!_.isUndefined(this.filterModeKey)
|
||||
&& this.configModel.configuration.ldap_experienced_admin === '1') {
|
||||
this.setFilterMode(this.configModel.FILTER_MODE_RAW);
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* updates the tab when the model loaded a configuration and notified
|
||||
|
|
|
@ -184,6 +184,7 @@ OCA = OCA || {};
|
|||
* @inheritdoc
|
||||
*/
|
||||
onActivate: function() {
|
||||
this._super();
|
||||
this.considerFeatureRequests();
|
||||
if(!this.managedItems.ldap_login_filter.$element.val()) {
|
||||
this.configModel.requestWizard('ldap_login_filter');
|
||||
|
|
Loading…
Reference in New Issue