├── .gitignore ├── README.md ├── lib ├── both │ ├── collections.coffee │ └── schemas.coffee ├── client │ ├── helpers.coffee │ ├── style.less │ ├── templates.coffee │ ├── templates.html │ └── tracker.coffee └── server │ ├── allow.coffee │ ├── methods.coffee │ └── publish.coffee ├── package.js ├── readme └── screenshot.png └── versions.json /.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogiben/meteor-notifications/HEAD/README.md -------------------------------------------------------------------------------- /lib/both/collections.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogiben/meteor-notifications/HEAD/lib/both/collections.coffee -------------------------------------------------------------------------------- /lib/both/schemas.coffee: -------------------------------------------------------------------------------- 1 | @Schemas = {} 2 | -------------------------------------------------------------------------------- /lib/client/helpers.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogiben/meteor-notifications/HEAD/lib/client/helpers.coffee -------------------------------------------------------------------------------- /lib/client/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogiben/meteor-notifications/HEAD/lib/client/style.less -------------------------------------------------------------------------------- /lib/client/templates.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogiben/meteor-notifications/HEAD/lib/client/templates.coffee -------------------------------------------------------------------------------- /lib/client/templates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogiben/meteor-notifications/HEAD/lib/client/templates.html -------------------------------------------------------------------------------- /lib/client/tracker.coffee: -------------------------------------------------------------------------------- 1 | Deps.autorun -> 2 | Meteor.subscribe('notifications') 3 | -------------------------------------------------------------------------------- /lib/server/allow.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogiben/meteor-notifications/HEAD/lib/server/allow.coffee -------------------------------------------------------------------------------- /lib/server/methods.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogiben/meteor-notifications/HEAD/lib/server/methods.coffee -------------------------------------------------------------------------------- /lib/server/publish.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogiben/meteor-notifications/HEAD/lib/server/publish.coffee -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogiben/meteor-notifications/HEAD/package.js -------------------------------------------------------------------------------- /readme/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogiben/meteor-notifications/HEAD/readme/screenshot.png -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogiben/meteor-notifications/HEAD/versions.json --------------------------------------------------------------------------------