Francis George
Francis George
Does Hyperloop work with UUIDs? Rails used to use sequential database IDs as primary keys, but now I believe it defaults to UUIDs for primary keys if you use Postgres....
Added #59 to cover possibly related `send_only` being ignored on create.
Patch for build - just extending current `
Ok I found a way to work around but it's pretty gross: ```ruby class School < ApplicationRecord has_many :subjects, class_name: "SchoolSubject", dependent: :destroy validates_presence_of :name, :country, :from, :to, :city after_save...
Possibly related to #39 STI class issues. I also have subclasses in the work app so will see if I run into this issue as well.
There is still a bug in Opal 0.11 and prior, I think something wrong with append_features. https://github.com/opal/opal/issues/1761 I also opened an issue with [opal/active-support](https://github.com/opal/opal-activesupport/issues/18) to see if they want to...
My patched version works right now in Opal 0.10.5 and 0.11. So *YES* you can get concerns to work in Hyperloop on the frontend 🎉 First you have to add...
I made a pull request to opal/active-support which has been merged https://github.com/opal/opal-activesupport/pull/19
Yes :D or even use opal/active-support master. Plus you have to add the hyperloop/models/concerns directory to load paths as above, which should eventually be in hyper-config.
Great, thanks! In other words, after the next release of both concerns will just work.