-
-
Notifications
You must be signed in to change notification settings - Fork 364
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding fetch_upload method to client #678
base: main
Are you sure you want to change the base?
Conversation
@Ponni-M can you restructure the commits to first refactor the Check out the Zulip commit message guidelines for more details: https://zulip.readthedocs.io/en/latest/contributing/version-control.html#commit-messages |
effective_url = API_VERSTRING + effective_url | ||
accesswithAPI = True | ||
return self.do_api_query(marshalled_request, effective_url, method=method, | ||
longpolling=longpolling, files=files, timeout=timeout, accesswithAPI = accesswithAPI) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think accesswithAPI = accessVersionedAPI
makes more sense, we don't need a separate variable accesswithAPI
.
@Ponni-M thanks for working on this, added a comment. |
Heads up @Ponni-M, we just merged some commits that conflict with the changes your made in this pull request! You can review this repository's recent commits to see where the conflicts occur. Please rebase your feature branch against the |
#628