Skip to content
Snippets Groups Projects
Commit fdb33cc0 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

pid is integer not a string anymore

parent 85a9810c
No related branches found
No related tags found
1 merge request!134Resolve "User managment page"
Pipeline #
......@@ -222,7 +222,7 @@ class RedcapConnector(object):
return result
def create_redcap_link(self, pid, redcap_version, subject):
return self.base_url + "/redcap_v" + redcap_version + "/DataEntry/index.php?pid=" + pid + "&id=" + \
return self.base_url + "/redcap_v" + redcap_version + "/DataEntry/index.php?pid=" + str(pid) + "&id=" + \
subject.nd_number + "&page=demographics"
def get_red_cap_subjects(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment