-
Notifications
You must be signed in to change notification settings - Fork 23
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
add column types for IPv4 and IPv6 addresses, compatible with both text and numeric filters, thanks to natural sort #1097
base: main
Are you sure you want to change the base?
Conversation
@kirisakow Thanks for working on this. Coincidentally, I've also been working on a new column type (for users/groups) at: #1090. Maybe the files and feedback I'm getting over there helps 😄 |
@kirisakow While working on #1090, I wrote down some notes of files I potentially had to change/add. I think not everything is applicable here, but might be helpful: Frontend
Backend
Others
|
@enjeck Thank you for the input, that was of much help! I assume development is now finished for the
Still, a few TODOs remain — like things I wasn't sure about:
* probably nothing to do about OpenAPI or migrations, as this feature merely adds two subtypes to the existing |
…ed in `columnHandler.js` and its occurrencies in `CreateColumn.vue`
- change subtype value declared in `columnHandler.js` and its occurrencies in `CreateColumn.vue`; - rename the corresponding .vue files; - refactor the corresponding imports.
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! |
This is an attempt to respond to issue #402 (and #981) by implementing
TextIPv4Address
andTextIPv6Address
column types that are compatible with both text and numericFilterIds
(all nine of them), thanks to natural sort.This is my first PR on this project, so please feel free to kindly point out anything I may have missed or done wrong.