unassignUser()
Description
Unassigns a person from the specified task
Usage
unassignUser({
id: string | number,
userId: string | number
}): void;
Parameters
id
- (required) the id of a taskuserId
- (required) the id of the person which needs to be unassigned from the task
Example
const { ToDo, Toolbar } = todo;
// create To do list
const list = new ToDo("#root", {
tasks: [
{ id: "1", text: "Task 1 #tag1" },
{ id: "1.1", text: "Task 1.1", parent: "1"},
{ id: "1.1.1", text: "Task 1.1.1 #tag1", parent: "1.1" },
{ id: "1.2", text: "Task 1.2", parent: "1" },
],
users: [
{ "id": "user_1", "label": "John" },
{ "id": "user_2", "label": "Kate" },
]
});
const toolbar = new Toolbar("#toolbar", {
api: list.api,
});
// unassign the user from the task
list.unassignUser({
id: "1.1",
userId: "user_2"
});
Related article: Task assignees