-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
feat(files_versions): get revision for a node #53833
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
Conversation
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.
Not sure how useful this is, but it certainly won't hurt either.
As I put in my original issue, the utility is not having to know the detail of how the revision int is resolved.... The APi of file_revisions is not intuitive in this sense... I had to go to VersionAuthorListener to deduce how a revision is resolved from a node (getMTime) |
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.
Please squash your commits and format the commit message to use conventional commits.
I understand that you are referring to the DCO issue. Resolved! |
Yes but please also squash them into one commit and give them a proper commit message according to conventional commits. |
Are there any instructions on which git commands to use in a readme file in the repository? I've never done this before manually. Whenever I squash, it's when merging the PR through GitHub or Azure DevOps tools. |
Squash: # update references
git fetch --all
# interactive rebase - adjust `origin` with the name of the upstream repository (this one here)
git rebase -i origin/master
# now in the opened editor mark all except the first as "s" (for squash)
# save and follow the instructions git prompts you with
git push -f |
@susnux thank you, I think I did it right. |
@provokateurin I must have done something wrong. Do you know what it could be? |
The class |
Head branch was pushed to by a user without write access
@bdovaz please squash again, we can't merge it like this. |
Signed-off-by: Borja Domínguez Vázquez <[email protected]> Signed-off-by: Borja Domínguez Vázquez <[email protected]> wip Signed-off-by: Borja Domínguez Vázquez <[email protected]> Signed-off-by: Borja Domínguez Vázquez <[email protected]> wip Signed-off-by: Borja Domínguez Vázquez <[email protected]> Signed-off-by: Borja Domínguez Vázquez <[email protected]> Update IVersionBackend.php Signed-off-by: Borja Domínguez Vázquez <[email protected]> wip
Ready (I hope) |
Are the problems that arise caused by my PR? Because apparently it doesn't seem so. |
No, they can be ignored because your PR is coming from a fork. |
See nextcloud/server#53833 . Signed-off-by: Max <[email protected]>
See nextcloud/server#53833 . Signed-off-by: Max <[email protected]>
Hello there, We hope that the review process is going smooth and is helpful for you. We want to ensure your pull request is reviewed to your satisfaction. If you have a moment, our community management team would very much appreciate your feedback on your experience with this PR review process. Your feedback is valuable to us as we continuously strive to improve our community developer experience. Please take a moment to complete our short survey by clicking on the following link: https://cloud.nextcloud.com/apps/forms/s/i9Ago4EQRZ7TWxjfmeEpPkf6 Thank you for contributing to Nextcloud and we hope to hear from you soon! (If you believe you should not receive this message, you can add yourself to the blocklist.) |
Summary
Encapsulate the implementation detail of how the revision is resolved through a node.
TODO
Checklist