refactor(mapping): mask assignee in def transform_data(data), change in 90 str "...else "dr.cyrill"
This commit is contained in:
parent
37660a6e31
commit
3d255b4bfd
@ -65,7 +65,7 @@ def transform_data(data):
|
|||||||
'description': task['notes'],
|
'description': task['notes'],
|
||||||
'createdAt': task['created_at'],
|
'createdAt': task['created_at'],
|
||||||
'deadline': task['due_on'],
|
'deadline': task['due_on'],
|
||||||
'assignee': task['assignee'],
|
# 'assignee': task['assignee'],
|
||||||
# 'milestone': task['section'],
|
# 'milestone': task['section'],
|
||||||
# 'memberships': task['memberships'],
|
# 'memberships': task['memberships'],
|
||||||
# 'parent': task[''],
|
# 'parent': task[''],
|
||||||
@ -87,7 +87,7 @@ def create_tasks_in_tracker(data):
|
|||||||
'Content-Type': 'appication/json',
|
'Content-Type': 'appication/json',
|
||||||
}
|
}
|
||||||
for task in data:
|
for task in data:
|
||||||
ya_assignee = assignee[task['assignee']['gid']] if task.get('assignee', 0) !=0 else 'dr.cyrill@heado.ru'
|
ya_assignee = assignee[task['assignee']['gid']] if task.get('assignee', 0) !=0 else 'dr.cyrill'
|
||||||
payload = {
|
payload = {
|
||||||
'queue': 'TESTIMPORT', # Вынести в переменную
|
'queue': 'TESTIMPORT', # Вынести в переменную
|
||||||
'summary': task['summary'],
|
'summary': task['summary'],
|
||||||
@ -113,7 +113,6 @@ def create_tasks_in_tracker(data):
|
|||||||
'Ошибка при создании задачи в ЯндексТрекер:',
|
'Ошибка при создании задачи в ЯндексТрекер:',
|
||||||
response.content,
|
response.content,
|
||||||
)
|
)
|
||||||
exit()
|
|
||||||
|
|
||||||
|
|
||||||
# asana_data = get_data_from_asana()
|
# asana_data = get_data_from_asana()
|
||||||
|
Loading…
Reference in New Issue
Block a user