Skip to content
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 support for Rails store accessor attributes #48

Closed
brunosedler opened this issue Jul 11, 2024 · 1 comment
Closed

Add support for Rails store accessor attributes #48

brunosedler opened this issue Jul 11, 2024 · 1 comment

Comments

@brunosedler
Copy link

It would be nice, if assignable_values would fully support Rails store accessor attributes. They have been around for quite a while now, and and are mostly quite pleasant to work with. If assignable_values would also support them, it would further enhance the usage of them.

Most of the assignable_values functionality already seems to work fine enough for store accessor attributes out of the box, but I came across at least one issue. The allow_blank option does not work for store accessor attributes on update. I assume, this has to do with the feature of always allowing the value that's already saved in the database and the check for the value in the database, that is performed to achieve this.

Now, since store attributes do not have an own database column, this check will always return nil and therefore always allow nil-values when validating the attribute.

As store attribute are its own kind of attribute (like belongs_to relations), they should probably be handled in an own restriction class, like AssignableValues::ActiveRecord::Restriction::StoreAttribute to explicitly handle all peculiarities of store attributes.

@begerdom
Copy link
Member

begerdom commented Dec 5, 2024

Implemented in #50

@begerdom begerdom closed this as completed Dec 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants