Commit 6ab3a7cf authored by Guillermo Bonvehí's avatar Guillermo Bonvehí

hide_offline_users option

This will hide users with offline status, show_only_users still
takes precendence if enabled.
parent 572b3e8d
......@@ -226,6 +226,7 @@
this.roster_groups = false;
this.show_controlbox_by_default = false;
this.show_only_online_users = false;
this.hide_offline_users = false;
this.show_toolbar = true;
this.storage = 'session';
this.use_otr_by_default = false;
......@@ -272,6 +273,7 @@
'roster_groups',
'show_controlbox_by_default',
'show_only_online_users',
'hide_offline_users',
'show_toolbar',
'sid',
'storage',
......@@ -3247,7 +3249,12 @@
},
showInRoster: function () {
return (!converse.show_only_online_users || this.get('chat_status') === 'online');
var chatStatus = this.get('chat_status');
if (converse.show_only_online_users && chatStatus !== 'online')
return false;
if (converse.hide_offline_users && chatStatus === 'offline')
return false;
return true;
}
});
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment