-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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 option to show 'tracking fields' #566
Comments
Another approach may be to just individualize/objectize the tracking options so that multiple properties can be attached to it. For example: updatedAt: { show: true, edit: true} Not saying allowing editing of these makes sense (it could for some use case) but this is to demonstrate that each of these can be managed independently. Not sure how well this would play with the work @johnnyestilles did. |
@mjmaix, that's a great suggestion for a PR. I actually have an implementation, but have been waiting until after the UI Admin Rewrite (#503) to submit a PR. I like the idea of adding an option to @webteckie, at the moment all the tracking fields are created by plugin (behind the scenes) with @JedWatson, is this something we should consider doing now or should we do it post-react? |
@johnnyestilles not sure if that code referenced by that link is the latest but there seems to be a bug at this line:
☺ |
@webteckie, it is! Thanks for he catch. Submitting the correction in a few minutes. |
Correction submitted (PR #569). Thanks again @webteckie. |
@webteckie great suggestion, I was on the impression that per field modification is not good cause users would have to configure more.. but that's just me being lazy. I also agree that @JohnnyEstilles great (and thanks btw for the track feature), could you share the commit for the implementation? |
@mjmaix my current implementation is outdated. It pre-dates the current |
Thanks, will wait till then. :) |
was this fixed? |
AFAIK this is fixed, if not please reopen. |
It pretty much is, the UI could be nicer / better integrated, but that'll happen over the course of the next few updates |
Have an option to show tracking fields (
createdAt
,updatedAt
,createdBy
andupdatedBy
) in the Admin UI.I'm planning to create PR for this.
For now I'm not sure w/c one is better
showTrack : true
ortrack
objecttrack: { createdAt: true, updatedAt: true, createdBy: true, updatedBy:true, showTrack: true}
The text was updated successfully, but these errors were encountered: