You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am by no means a python pro and am currently writing a small script to transfer a few thousand of Nexcloud Deck entries to Taiga. I have already accomplished most things yet the python-taiga wrapper does not seem to have a way to connect UserStories to Swimlanes or Epics, does it? It would be nice if thats possible.
edit: it seems following solves my problem. though "related userstories" might also be relevant for others
add_user_story(
card["title"],
description=card["description"],
tags= [ label["title"] for label in card["labels"] ],
due_date=card['duedate'],
swimlane=swimlane.id
)
# link epic to userstory
url = f"{host}/api/v1/epics/{epic.id}/related_userstories"
headers = {
"Content-Type": "application/json",
"Authorization": f"Bearer {api.token}"
}
data = {
"epic": epic.id,
"user_story": user_story.id
}
response = requests.post(url, headers=headers, json=data)
The text was updated successfully, but these errors were encountered:
I am by no means a python pro and am currently writing a small script to transfer a few thousand of Nexcloud Deck entries to Taiga.
I have already accomplished most things yet the python-taiga wrapper does not seem to have a way to connect UserStories to Swimlanes or Epics, does it? It would be nice if thats possible.edit: it seems following solves my problem. though "related userstories" might also be relevant for others
The text was updated successfully, but these errors were encountered: