-
Notifications
You must be signed in to change notification settings - Fork 179
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
ActiveHash instance should not be editable #146
Comments
hmm... Instance variables are core functionality for ruby objects. They are less known or used in rails-land, I'd suspect a rails app that modifies them during a request probably confuses more rails users than it helps... Having a strict and clear "don't use instance variables on these objects" policy sounds better than an unclear policy and unexpected behavior which is more of what is in place at the moment. Is there an straightforward way to "turn them off" for ActiveHash objects? |
I think it is OK to use instance variables, problem is not to be valid access permission.
Sounds good. we should do. I closed your PR once. But I'm going to reopen & merge if we have no idea for strict value of ActiveHash 🤔 |
Oh sorry, our discussion point was not matching, and I finally understand. Let's taking about this issue on #124 |
Relating #125
ActiveHash focus on master data. So I think we should drop( or prohibit) editing(update/destroy) on version 2.0.0.
(but, it is easy to change instance value on Ruby. I mean we should drop it from open API)
I know it is very aggressive change so I want to hear your opinion.
The text was updated successfully, but these errors were encountered: