meteor-astronomy
meteor-astronomy copied to clipboard
Model layer for Meteor
Astronomy doesn't handle the attempt to Class.create() with the name of already existing class. Example: we have the next three files in project: ```javascript // file: MyModel.js export const MyModel...
I am using astronomy v2.5.6, when use a collection function like find or update on an astronomy class instance eg. User.find(), i get the error: TypeError: User.find() is not a...
This was possible in v1, and is possible in most ORMs (mongoose, for example). It's useful so that one can take action after particular properties change, amongst other things.
Hey @lukejagodzinski! I don't know if this is a good way to let you know about (and share) a behavior I made recently. https://github.com/emdagon/meteor-astronomy-author-behavior It's pretty similar to timestamp, it...
Hey, I'm returning this array in one of my Meteor methods: return Video.find({status:'released'},{limit:500,fields:{md5:0}}).fetch(); The problem is that the md5 field is also part of each document, so the fields parameter...
When my class is not secured and I try to update a document from the client using `{ forceUpdate: true }`, my Astronomy event-based authorization system fails (not allowing the...
Hi jagi, What do you think would be the best approach to translate my application based on Astronomy? Both hard-coded strings and database entries should be translated. One approach might...
I have a schema set up where anytime someone fully completes registering (as there are 3 separate parts to it with the final being an admin approval) there are many...
### How to reproduce: ``` meteor create sampleAstro cd sampleAstro meteor add jagi:astronomy ``` Create `/imports/posts.js` with this content: ```js import { Mongo } from 'meteor/mongo'; import { Class }...
I'm sorry if it's obvious, but I can't find what's wrong here with my class named Service. ``` const servClass = new Service(); console.log('Created a new Service class instance.', servClass);...