Commit f5b10ff6 authored by JC Brand's avatar JC Brand

Formatting

parent 71370f5b
...@@ -887,26 +887,25 @@ ...@@ -887,26 +887,25 @@
if (!this.verifyAffiliations(['owner']) || !this.validateRoleChangeCommand(command, args)) { if (!this.verifyAffiliations(['owner']) || !this.validateRoleChangeCommand(command, args)) {
break; break;
} }
this.model.setAffiliation('admin', this.model.setAffiliation('admin', [{
[{ 'jid': args[0], 'jid': args[0],
'reason': args[1] 'reason': args[1]
}]).then( }]).then(
() => this.model.occupants.fetchMembers(), () => this.model.occupants.fetchMembers(),
(err) => this.onCommandError(err) (err) => this.onCommandError(err)
); );
break; break;
case 'ban': case 'ban':
if (!this.verifyAffiliations(['owner', 'admin']) || !this.validateRoleChangeCommand(command, args)) { if (!this.verifyAffiliations(['owner', 'admin']) || !this.validateRoleChangeCommand(command, args)) {
break; break;
} }
this.model.setAffiliation('outcast', [{
this.model.setAffiliation('outcast', 'jid': args[0],
[{ 'jid': args[0], 'reason': args[1]
'reason': args[1] }]).then(
}]).then( () => this.model.occupants.fetchMembers(),
() => this.model.occupants.fetchMembers(), (err) => this.onCommandError(err)
(err) => this.onCommandError(err) );
);
break; break;
case 'deop': case 'deop':
if (!this.verifyAffiliations(['admin', 'owner']) || !this.validateRoleChangeCommand(command, args)) { if (!this.verifyAffiliations(['admin', 'owner']) || !this.validateRoleChangeCommand(command, args)) {
...@@ -959,14 +958,13 @@ ...@@ -959,14 +958,13 @@
} }
const occupant = this.model.occupants.findWhere({'nick': args[0]}) || const occupant = this.model.occupants.findWhere({'nick': args[0]}) ||
this.model.occupants.findWhere({'jid': args[0]}); this.model.occupants.findWhere({'jid': args[0]});
this.model.setAffiliation('member', [{
this.model.setAffiliation('member', 'jid': occupant.get('jid'),
[{ 'jid': occupant.get('jid'), 'reason': args[1]
'reason': args[1] }]).then(
}]).then( () => this.model.occupants.fetchMembers(),
() => this.model.occupants.fetchMembers(), (err) => this.onCommandError(err)
(err) => this.onCommandError(err) );
);
break; break;
} case 'nick': } case 'nick':
if (!this.verifyRoles(['visitor', 'participant', 'moderator'])) { if (!this.verifyRoles(['visitor', 'participant', 'moderator'])) {
...@@ -982,13 +980,13 @@ ...@@ -982,13 +980,13 @@
if (!this.verifyAffiliations(['owner']) || !this.validateRoleChangeCommand(command, args)) { if (!this.verifyAffiliations(['owner']) || !this.validateRoleChangeCommand(command, args)) {
break; break;
} }
this.model.setAffiliation('owner', this.model.setAffiliation('owner', [{
[{ 'jid': args[0], 'jid': args[0],
'reason': args[1] 'reason': args[1]
}]).then( }]).then(
() => this.model.occupants.fetchMembers(), () => this.model.occupants.fetchMembers(),
(err) => this.onCommandError(err) (err) => this.onCommandError(err)
); );
break; break;
case 'op': case 'op':
if (!this.verifyAffiliations(['admin', 'owner']) || !this.validateRoleChangeCommand(command, args)) { if (!this.verifyAffiliations(['admin', 'owner']) || !this.validateRoleChangeCommand(command, args)) {
...@@ -1009,13 +1007,13 @@ ...@@ -1009,13 +1007,13 @@
if (!this.verifyAffiliations(['admin', 'owner']) || !this.validateRoleChangeCommand(command, args)) { if (!this.verifyAffiliations(['admin', 'owner']) || !this.validateRoleChangeCommand(command, args)) {
break; break;
} }
this.model.setAffiliation('none', this.model.setAffiliation('none', [{
[{ 'jid': args[0], 'jid': args[0],
'reason': args[1] 'reason': args[1]
}]).then( }]).then(
() => this.model.occupants.fetchMembers(), () => this.model.occupants.fetchMembers(),
(err) => this.onCommandError(err) (err) => this.onCommandError(err)
); );
break; break;
case 'topic': case 'topic':
case 'subject': case 'subject':
......
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