Unified event name with the API

This commit is contained in:
Jori Lallo
2017-08-28 23:50:45 -07:00
parent c9e182376e
commit a1b239003c
4 changed files with 4 additions and 4 deletions

View File

@@ -173,7 +173,7 @@ class Document extends BaseModel {
@action delete = async () => {
try {
await client.post('/documents.delete', { id: this.id });
this.emit('document.delete', {
this.emit('documents.delete', {
id: this.id,
collectionId: this.collection.id,
});