Roman Pearah

Results 64 issues of Roman Pearah

In the example, you show urls being mapped to names like `"show"` and `"create"`. You then demonstrate the use of `__afterHooks` by mapping a function to `"create"`. So I would...

Often times, the your intent is to leverage the name of an object in Firebase as an "id" property of the object. But List essentially shunts these off into a...

There have been a few merged pull requests over the last new few months, but Clojars still has 1.0.2 from March. A 1.0.3 or 1.1.0 would be great.

After generating namespaced methods (for analytics, in my case), I started type the name of one of the methods into the REPL and got slapped with this as soon as...

I was disappointed to see that this was converted to a pure Ember CLI add-on, not because that's not great, but because I don't use Ember CLI for my Ember...

Here is the basic problem I'm having with hasMany relationships. I have an action on a route that needs to set not only direct properties but properties on certain the...

Firebase will store arrays like `["a", "b"]` as `{0: "a", 1: "b"}` and likewise return that array if it comes across that object. So I added an array transform to...

Route: ``` coffeescript PortfolioAddAllocationRoute = Ember.Route.extend beforeModel: -> @set "fork", @store.fork() model: (params) -> @fork.fetch("portfolio", @modelFor("portfolio").get "id").then (portfolioFork) => @set "allocation", portfolioFork.get("allocations").pushObject @fork.createRecord "allocation" @get "allocation" deactivate: -> @fork.destroy() actions:...

I just ran into a situation where I have an embedded model that only sometimes has data in Firebase (i.e. it's optional). Then when the parent model is resolved in...

Given these two models: ``` coffeescript attr = FP.attr hasMany = FP.hasMany hasOne = FP.hasOne App.Advisor = FP.Model.extend name: attr "string" tickets: hasMany "tickets", embedded: false App.Ticket = FP.Model.extend advisor:...