Skip to content
Snippets Groups Projects
Commit f001480d authored by abaumann's avatar abaumann
Browse files

Added ability to specify url for registering a svc account

parent fe98ac37
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ def main():
headers = {"Authorization": "bearer " + credentials.get_access_token().access_token}
headers["User-Agent"] = firecloud_api.FISS_USER_AGENT
uri = "https://api.firecloud.org/register/profile"
uri = args.fc_url+"/register/profile" if args.fc_url else "https://api.firecloud.org/register/profile"
profile_json = {"firstName":"None", "lastName": "None", "title":"None", "contactEmail":args.owner_email,
"institute":"None", "institutionalProgram": "None", "programLocationCity": "None", "programLocationState": "None",
......
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