-
Notifications
You must be signed in to change notification settings - Fork 433
Open
Description
In the following code it says that firestore does not exist for firebase?
From board.service.ts
/**
* Remove a specifc task from the board
*/
removeTask(boardId: string, task: Task) {
return this.db
.collection('boards')
.doc(boardId)
.update({
tasks: firebase.firestore.FieldValue.arrayRemove(task)
});
}
Metadata
Metadata
Assignees
Labels
No labels