summaryrefslogtreecommitdiff
path: root/lib/solidus_subscriptions/permitted_attributes.rb
AgeCommit message (Collapse)Author
2020-09-25Fix coding style violationsAlessandro Desantis
2020-09-24Use `.configure`/`.configuration` standard for config managementAlessandro Desantis
2020-07-27Update default permitted attributesAlessandro Desantis
The billing address as well as the interval and end date can now be set directly on the subscription, so we need to permit those attributes by default.
2020-06-13Update decorator namespaces to be compliant with ZeitwerkAlessandro Desantis
2017-01-09Subs have many subs line itemsBrendan Deere
We are going to support multiple items per subscription. This commit changes the subscription -> subscription_line_item relationship from a has_one to a has_many. Most of the changes here are simply pluralization changes. Somethat are not: Api params now take: `line_items_attributes instead` of `line_item_attributes` for nested params to a subscription `subscription_line_items_attributes` instead of `subscription_line_item_attributes` Only the interval of the first subscription_line_item is considered
2016-11-03make_subs_permitted_attriubtes_configurableBrendan Deere
2016-09-27Override Spree Permitted attributes togetherBrendan Deere
Instead of overriding Spree::PermittedAttributes in various decorators, group this override together in its own module. At least now this is all happening in the same place