finished creating second level todos in todoist as checklists in habitica
This commit is contained in:
@@ -9,18 +9,20 @@ namespace Habitica.Todoist.Integration.Model.Storage
|
||||
{
|
||||
public TodoHabitLink() { }
|
||||
|
||||
public TodoHabitLink(string userId, string todoistId, string habiticaId)
|
||||
public TodoHabitLink(string userId, string todoistId, string habiticaId, string todoistParentId = null)
|
||||
{
|
||||
PartitionKey = userId;
|
||||
RowKey = todoistId;
|
||||
TodoistParentId = todoistParentId;
|
||||
HabiticaId = habiticaId;
|
||||
}
|
||||
|
||||
public string TodoistParentId { get; set; }
|
||||
public string HabiticaId { get; set; }
|
||||
|
||||
public HabitTodoLink Reverse()
|
||||
public HabitTodoLink Reverse(string habiticaParentId = null)
|
||||
{
|
||||
return new HabitTodoLink(PartitionKey, HabiticaId, RowKey);
|
||||
return new HabitTodoLink(PartitionKey, HabiticaId, RowKey, habiticaParentId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user