Show every HasMany child
dear developers of this wonderful gem,
I realize that sometimes, I'd like to display all the children of a given model in his dashboard. Actually, the only way I know to override the default pagination value is to use the limit: option and set an arbitrary large number
ATTRIBUTE_TYPES = {
names: Field::HasMany.with_options(limit: 100),
}.freeze
It would be very nice to have a special value that says : display all the children. Something like this :
ATTRIBUTE_TYPES = {
names: Field::HasMany.with_options(limit: 0),
}.freeze
I hope this idea is not too strange and it will interest at least one of you
Please continu the good work around Administrate,
Best