-
Notifications
You must be signed in to change notification settings - Fork 113
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
System and User Scope for settings #56
Comments
So you basically want a set of global settings that can be overridden on a per-user basis? Would you want any setting to be overridden or only specific ones? Regardless, the feature isn't there today, but it might be something that makes sense to add. |
Basically yes. |
If you'd like to help develop the feature that'd be awesome. I think since this is a somewhat complex feature, I think creating an additional class that extends the DatabaseSettingStore would be a good idea to prevent subtle bugs from creeping in. |
I'll see what I can do, any questions etc I'll keep them in this issue thread. |
Sorry for the super late notification but I'm going through my issues and this is a duplicate of #3. I'm still interested in having it implemented, but will not be doing it myself (I'll be happy to help out anyone who wants to give it a shot). |
I've seen the extra coloumn example, but I'm not quite sure how i can work it into what I'm trying to do.
I want to use the package for system settings on a website, but i also want to have users settings in the same table/setup.
An example would be pricebands.
System default settings would be say
1, Value: 5 - Qty: 100
2, Value: 10 - Qty 200
3, Value: 20 - Qty 400
User settings would make this say:
1, Value: 5 - Qty: 100
2, Value: 7.5 - Qty 300
3, Value: 10 - Qty 600
Is this possible within this package or would we have to build something custom?
Many thanks
The text was updated successfully, but these errors were encountered: