meteor-astronomy
meteor-astronomy copied to clipboard
Model layer for Meteor
Hi, I'm trying to develop an application where my collections are local only, and grounded. Here's an example: ``` const Circuits = new Ground.Collection('circuits', { connection: null }); ``` The...
I have been using Astronomy to deal with validation and behavior of models, and it has been very helpful. However, I am having trouble understanding how to implement embedded objects,...
Long time no talk, Jagi. I hope you're doing well. I have some bad news regarding compatibility issues with IE's recent version (up to IE10). It seems you're using a...
In Astronomy, as far as I know every class that inherits from another one creates or uses a `type` field. This works as expected, but when I try to find...
Say we have a file that has a campaign class and a Enum that is used within that class. This file exports the ENUM too. Now we have another file...
For some reason, the only events I can get to fire are the init events. Here's what my code looks like: ````javascript // in a server method import {Team} from...
I'm getting this error: ```` Exception while invoking method 'login' Error: key profile.Leagues must not contain '.' ```` I think it's related to this recent change: https://github.com/meteor/meteor/issues/3786
Adding TTL via fields in a Class, so Mongo knows when to auto delete them after sometime?! Just a suggestion...
I was trying to create a multiple-level inheritance using the `[Class].inherit` method but just came to realize it is not currently possible. Let me elaborate with the following scenario: Let's...
I really liked the mongoose `populate` feature for fetching related documents from another collection. Do you think it's possible for us to have a similar feature in v2.0? Or perhaps...