remove unused argument
This commit is contained in:
parent
8745424d3a
commit
3cbe4f1f46
2 changed files with 4 additions and 4 deletions
|
@ -162,8 +162,8 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
fetchMessages: function(options) {
|
fetchMessages: function() {
|
||||||
return this.messageCollection.fetchConversation(this.id, options);
|
return this.messageCollection.fetchConversation(this.id);
|
||||||
},
|
},
|
||||||
|
|
||||||
fetchContacts: function(options) {
|
fetchContacts: function(options) {
|
||||||
|
|
|
@ -258,8 +258,8 @@
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
fetchConversation: function(conversationId, options) {
|
fetchConversation: function(conversationId) {
|
||||||
options = options || {};
|
var options = {};
|
||||||
options.index = {
|
options.index = {
|
||||||
// 'conversation' index on [conversationId, received_at]
|
// 'conversation' index on [conversationId, received_at]
|
||||||
name : 'conversation',
|
name : 'conversation',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue