We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35d950a commit ae79633Copy full SHA for ae79633
1 file changed
v2_app.py
@@ -47,7 +47,7 @@ def get_issues_by_owner_id_v2(owner, issue):
47
# mentors_data = find_mentors(val['issue_url']) if val['issue_url'] else {'mentors': [], 'mentor_usernames': []}
48
49
if val['body_text']:
50
- if ("Weekly Goals" in val['body_text'] and not w_goal_url) and ("@"+val['created_by'].lower() == dmp_issue_id['mentor_username'].lower() if dmp_issue_id['mentor_username'] else None):
+ if ("Weekly Goals" in val['body_text'] and not w_goal_url):
51
w_goal_url = val['body_text']
52
plain_text_body = markdown2.markdown(val['body_text'])
53
tasks = re.findall(r'\[(x| )\]', plain_text_body)
0 commit comments