├── .github └── workflows │ └── comment-issue.yml ├── .gitignore ├── .travis.yml ├── History.md ├── README.md ├── common.coffee ├── docs └── partition-diagram.png ├── grouping.coffee ├── grouping_client.coffee ├── package.js └── tests ├── grouping_index_tests.coffee ├── grouping_tests.coffee ├── hook_tests.coffee └── insecure_login.js /.github/workflows/comment-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-partitioner/HEAD/.github/workflows/comment-issue.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-partitioner/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-partitioner/HEAD/.travis.yml -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-partitioner/HEAD/History.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-partitioner/HEAD/README.md -------------------------------------------------------------------------------- /common.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-partitioner/HEAD/common.coffee -------------------------------------------------------------------------------- /docs/partition-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-partitioner/HEAD/docs/partition-diagram.png -------------------------------------------------------------------------------- /grouping.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-partitioner/HEAD/grouping.coffee -------------------------------------------------------------------------------- /grouping_client.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-partitioner/HEAD/grouping_client.coffee -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-partitioner/HEAD/package.js -------------------------------------------------------------------------------- /tests/grouping_index_tests.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-partitioner/HEAD/tests/grouping_index_tests.coffee -------------------------------------------------------------------------------- /tests/grouping_tests.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-partitioner/HEAD/tests/grouping_tests.coffee -------------------------------------------------------------------------------- /tests/hook_tests.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-partitioner/HEAD/tests/hook_tests.coffee -------------------------------------------------------------------------------- /tests/insecure_login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-partitioner/HEAD/tests/insecure_login.js --------------------------------------------------------------------------------