├── .gitignore ├── .meteor ├── .finished-upgraders ├── .gitignore ├── .id ├── cordova-plugins ├── packages ├── platforms ├── release └── versions ├── README.md ├── client ├── index.html ├── lib │ └── app.js ├── parties │ ├── controllers │ │ ├── partiesList.js │ │ └── partyDetails.js │ ├── filters │ │ ├── displayName.js │ │ └── uninvited.js │ ├── styles │ │ └── parties.import.less │ └── views │ │ ├── parties-list.ng.html │ │ └── party-details.ng.html ├── routes.js └── styles │ └── main.less ├── model └── parties.js └── server ├── parties.js ├── startup └── loadParties.js └── users.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /.meteor/.finished-upgraders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbastowski/meteor-angular-socially/HEAD/.meteor/.finished-upgraders -------------------------------------------------------------------------------- /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbastowski/meteor-angular-socially/HEAD/.meteor/.id -------------------------------------------------------------------------------- /.meteor/cordova-plugins: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbastowski/meteor-angular-socially/HEAD/.meteor/packages -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbastowski/meteor-angular-socially/HEAD/.meteor/platforms -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.1.0.2 2 | -------------------------------------------------------------------------------- /.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbastowski/meteor-angular-socially/HEAD/.meteor/versions -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbastowski/meteor-angular-socially/HEAD/README.md -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbastowski/meteor-angular-socially/HEAD/client/index.html -------------------------------------------------------------------------------- /client/lib/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbastowski/meteor-angular-socially/HEAD/client/lib/app.js -------------------------------------------------------------------------------- /client/parties/controllers/partiesList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbastowski/meteor-angular-socially/HEAD/client/parties/controllers/partiesList.js -------------------------------------------------------------------------------- /client/parties/controllers/partyDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbastowski/meteor-angular-socially/HEAD/client/parties/controllers/partyDetails.js -------------------------------------------------------------------------------- /client/parties/filters/displayName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbastowski/meteor-angular-socially/HEAD/client/parties/filters/displayName.js -------------------------------------------------------------------------------- /client/parties/filters/uninvited.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbastowski/meteor-angular-socially/HEAD/client/parties/filters/uninvited.js -------------------------------------------------------------------------------- /client/parties/styles/parties.import.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbastowski/meteor-angular-socially/HEAD/client/parties/styles/parties.import.less -------------------------------------------------------------------------------- /client/parties/views/parties-list.ng.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbastowski/meteor-angular-socially/HEAD/client/parties/views/parties-list.ng.html -------------------------------------------------------------------------------- /client/parties/views/party-details.ng.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbastowski/meteor-angular-socially/HEAD/client/parties/views/party-details.ng.html -------------------------------------------------------------------------------- /client/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbastowski/meteor-angular-socially/HEAD/client/routes.js -------------------------------------------------------------------------------- /client/styles/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbastowski/meteor-angular-socially/HEAD/client/styles/main.less -------------------------------------------------------------------------------- /model/parties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbastowski/meteor-angular-socially/HEAD/model/parties.js -------------------------------------------------------------------------------- /server/parties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbastowski/meteor-angular-socially/HEAD/server/parties.js -------------------------------------------------------------------------------- /server/startup/loadParties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbastowski/meteor-angular-socially/HEAD/server/startup/loadParties.js -------------------------------------------------------------------------------- /server/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbastowski/meteor-angular-socially/HEAD/server/users.js --------------------------------------------------------------------------------