LiquidPlanner Classic Forum
Will multiple assignments be applied to all object types?
Posted on behalf of a customer. Original posting date 2014-10-16.
Has your web application been updated to allow multiple assignments yet? If not, I assume that change will be visible on 11/22? I looked through the site today, and it didn’t look like the change has been applied.
Will multiple assignments be applied to all object types: package, project, task, etc. We assumed all these items were classified as “treeItems”, so we figured you could do multiple assignment on each of these items.
Finally, do you have some example code you can send my way in which you filter a task by assignment? We’re currently doing something like this:
// Gets tasks associated with a given user.
// Optionally include inactive tasks.
public List GetTasks(string ownerID, bool includeInactive)
{
if (includeInactive)
return GetObject<List>(get("/workspaces/" + this.WorkspaceId + "/tasks?filter[]=owner_id=" + ownerID));
else
return GetObject<List>(get("/workspaces/" + this.WorkspaceId + "/tasks?filter[]=owner_id=" + ownerID + "&filter[]=is_done is false"));
}
We’re just wondering if this filtering mechanism will persist (or something like it) in the refactored solution.