David Roy
David Roy
Spree::Gateway::PayPalGateway Live or Sandbox UK account Place a order of say £100 In spree admin click on refund Select the full amount of 100 with any reason Click refund The...
While perhaps better as three separate issue, they are all interconnected so I will group them into one group of bugs. Custom endpoints don't respond to route_format changes. We have...
When using Virtus.model we are able to set default values for attributes using procs which are currently missing from the properties hash. Example usage: ``` property :id, default -> {...
For the last couple days we have been having users report that payments are being refused due to a 2099 authorisation required error. Please advise how to sort this issue.
Forgive if I am asking in the wrong place, I see in the roadmap you are working on a headless version that would support NextJS. Is there an expected completion...
Add an optional flag to disable the CMS for cases where the store is hosted on an application that already has a CMS (Strapi for instance). The ability to disable...
Greetings, There is a wee bit of a issue where if you have a empty response from ActiveRecord and don't specifically call `to_a` then it'll return something like `{"data":"#"}` instead...
A common issue we have with maglev(and all web development) is how to deal with the header, main, and footer. Especially given the requirement to have the footer be on...
For my new site I've made a header and a header with a full screen height call to action/welcome. Currently I need add the nav links on both or have...
The assets controller as it currently works by streaming the file: ``` def show @asset = Maglev::Asset.find(resource_id) send_data @asset.download, filename: @asset.filename, type: @asset.content_type end ``` This results in `cache-control: max-age=0,...