Unified event name with the API
This commit is contained in:
@@ -91,7 +91,7 @@ class Collection extends BaseModel {
|
||||
this.updateData(collection);
|
||||
this.errors = stores.errors;
|
||||
|
||||
this.on('document.delete', (data: { collectionId: string }) => {
|
||||
this.on('documents.delete', (data: { collectionId: string }) => {
|
||||
if (data.collectionId === this.id) this.fetch();
|
||||
});
|
||||
}
|
||||
|
||||
@@ -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,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user