Update app.py
Browse files
app.py
CHANGED
|
@@ -79,7 +79,7 @@ async def create_task(request: Request):
|
|
| 79 |
status = "to do"
|
| 80 |
print(f"Status: {status}")
|
| 81 |
|
| 82 |
-
web_app_url = "https://script.google.com/macros/s/
|
| 83 |
params = {
|
| 84 |
"mode": "extended",
|
| 85 |
"taskType": task_type,
|
|
@@ -104,7 +104,7 @@ async def create_task(request: Request):
|
|
| 104 |
payload = {
|
| 105 |
"name": task_title,
|
| 106 |
"description": description,
|
| 107 |
-
"assignees": assignee_ids,
|
| 108 |
"status": status
|
| 109 |
}
|
| 110 |
|
|
|
|
| 79 |
status = "to do"
|
| 80 |
print(f"Status: {status}")
|
| 81 |
|
| 82 |
+
web_app_url = "https://script.google.com/macros/s/AKfycbxfK2SarodNFCF7-hwB4R1Y_INTlr9L1-GdVnzJdnnqxLeSAam4dgGRuCA2et7PMY3v/exec"
|
| 83 |
params = {
|
| 84 |
"mode": "extended",
|
| 85 |
"taskType": task_type,
|
|
|
|
| 104 |
payload = {
|
| 105 |
"name": task_title,
|
| 106 |
"description": description,
|
| 107 |
+
"assignees": [int(uid) for uid in assignee_ids],
|
| 108 |
"status": status
|
| 109 |
}
|
| 110 |
|