Mitch VanDuyn
Mitch VanDuyn
similar to issue #134 https://guides.rubyonrails.org/association_basics.html#methods-added-by-has-one-create-association-attributes https://guides.rubyonrails.org/association_basics.html#methods-added-by-belongs-to-create-association-attributes
i.e. ```ruby something.groups.create(name: 'new group') # roughly the same as new_group @association.klass.new(attributes) ) end else args.collect do |attributes| @association.klass.new(attributes).tap { |item| _internal_push(item) } end end Promise.new.tap do |promise| Promise.when(items_to_save.collect(&:save)).then do...
1. Need to add exception exclusions to Operations... i.e. add this method: ```ruby def hypertrace_class_exclusions [ list of expected internal exceptions ] end ``` define at both class and instance...
given you have an existing model, which needs some of the methods to be defined as server_methods, it would be nice to say something like: `remote_access_to(:foo, :bar) { acting_user.admin? }`...
Don't load client side code until needed. Improves initial download time. There may be clues here #9
Idea is to bag sprockets for loading and simply use webpacker. This would require an NPM module for the hyperstack code as well as adjustments to how the configuration works....
It would be nice to interact with hyper-model on the client, but have the data backed by some arbitrary API. So you could declare the models, but also declare how...