├── .bowerrc ├── .editorconfig ├── .ember-cli ├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── .watchmanconfig ├── LICENSE.md ├── README.md ├── addon ├── .gitkeep ├── adapters │ └── application.js ├── initializers │ ├── model-setup.js │ └── store.js ├── mixins │ ├── adapter-api-host-proxy.js │ ├── authorization.js │ ├── resource-operations.js │ ├── service-cache.js │ └── transforms.js ├── models │ └── resource.js ├── serializers │ └── application.js ├── services │ └── store.js └── utils │ ├── attr.js │ ├── is.js │ ├── related-proxy.js │ ├── to-many.js │ ├── to-one.js │ ├── transform-map.js │ └── transforms.js ├── app ├── .gitkeep ├── adapters │ └── application.js ├── initializers │ ├── model-setup.js │ └── store.js ├── mixins │ ├── authorization.js │ ├── service-cache.js │ └── transforms.js ├── models │ └── resource.js ├── serializers │ └── application.js └── services │ └── store.js ├── blueprints ├── .jshintrc ├── addon-import │ ├── files │ │ └── __root__ │ │ │ └── __path__ │ │ │ └── __name__.js │ └── index.js ├── ember-jsonapi-resources │ └── index.js ├── jsonapi-adapter-test │ ├── files │ │ └── tests │ │ │ └── unit │ │ │ └── __path__ │ │ │ └── __test__.js │ └── index.js ├── jsonapi-adapter │ ├── files │ │ └── __root__ │ │ │ └── __path__ │ │ │ └── __name__.js │ └── index.js ├── jsonapi-blueprint │ ├── files │ │ └── blueprints │ │ │ ├── .jshintrc │ │ │ └── __name__ │ │ │ └── index.js │ └── index.js ├── jsonapi-dictionary-test │ ├── files │ │ └── tests │ │ │ └── unit │ │ │ └── utils │ │ │ └── dictionaries │ │ │ └── __name__-test.js │ └── index.js ├── jsonapi-dictionary │ ├── files │ │ └── __root__ │ │ │ └── utils │ │ │ └── dictionaries │ │ │ └── __name__.js │ └── index.js ├── jsonapi-initializer-test │ ├── files │ │ └── tests │ │ │ └── unit │ │ │ └── initializers │ │ │ └── __name__-test.js │ └── index.js ├── jsonapi-initializer │ ├── files │ │ └── __root__ │ │ │ └── initializers │ │ │ └── __name__.js │ └── index.js ├── jsonapi-model-test │ ├── files │ │ └── tests │ │ │ └── unit │ │ │ └── __path__ │ │ │ └── __test__.js │ └── index.js ├── jsonapi-model │ ├── files │ │ └── __root__ │ │ │ └── __path__ │ │ │ └── __name__.js │ └── index.js ├── jsonapi-resource │ └── index.js ├── jsonapi-serializer-test │ ├── files │ │ └── tests │ │ │ └── unit │ │ │ └── __path__ │ │ │ └── __test__.js │ └── index.js ├── jsonapi-serializer │ ├── files │ │ └── __root__ │ │ │ └── __path__ │ │ │ └── __name__.js │ └── index.js ├── jsonapi-service-test │ ├── files │ │ └── tests │ │ │ └── unit │ │ │ └── __path__ │ │ │ └── __test__.js │ └── index.js ├── jsonapi-service │ ├── files │ │ └── __root__ │ │ │ └── __path__ │ │ │ └── __resource__.js │ └── index.js ├── jsonapi-transform-mixin │ ├── files │ │ └── __root__ │ │ │ └── mixins │ │ │ └── __name__.js │ └── index.js ├── jsonapi-transform-test │ ├── files │ │ └── tests │ │ │ └── unit │ │ │ └── __path__ │ │ │ └── __test__.js │ └── index.js └── jsonapi-transform │ ├── files │ └── __root__ │ │ └── __path__ │ │ └── __name__.js │ └── index.js ├── bower.json ├── config ├── ember-try.js └── environment.js ├── ember-cli-build.js ├── fixtures └── api │ ├── authors │ └── 1.json │ ├── employees.json │ ├── employees │ └── 1.json │ ├── pictures.json │ ├── pictures │ ├── 1 │ │ └── imageable.json │ ├── 5 │ │ └── imageable.json │ ├── 1.json │ └── 5.json │ ├── posts.json │ ├── posts │ └── 1.json │ └── supervisors │ └── 2.json ├── index.js ├── lib └── json-to-module.js ├── node-tests └── blueprints │ └── jsonapi-resource-test.js ├── package.json ├── server ├── .jshintrc ├── index.js └── proxies │ └── api.js ├── testem.js ├── tests ├── .jshintrc ├── acceptance │ └── polymorphic-test.js ├── blanket-options.js ├── dummy │ ├── app │ │ ├── adapters │ │ │ ├── author.js │ │ │ ├── comment.js │ │ │ ├── commenter.js │ │ │ ├── employee.js │ │ │ ├── imageable.js │ │ │ ├── picture.js │ │ │ ├── post.js │ │ │ └── product.js │ │ ├── app.js │ │ ├── components │ │ │ ├── .gitkeep │ │ │ └── form-post.js │ │ ├── controllers │ │ │ ├── .gitkeep │ │ │ ├── admin │ │ │ │ └── edit.js │ │ │ └── post │ │ │ │ └── comments.js │ │ ├── helpers │ │ │ └── .gitkeep │ │ ├── index.html │ │ ├── initializers │ │ │ ├── author.js │ │ │ ├── comment.js │ │ │ ├── commenter.js │ │ │ ├── employee.js │ │ │ ├── imageable.js │ │ │ ├── picture.js │ │ │ ├── post.js │ │ │ └── product.js │ │ ├── models │ │ │ ├── .gitkeep │ │ │ ├── author.js │ │ │ ├── comment.js │ │ │ ├── commenter.js │ │ │ ├── employee.js │ │ │ ├── person.js │ │ │ ├── picture.js │ │ │ ├── post.js │ │ │ ├── product.js │ │ │ └── supervisor.js │ │ ├── resolver.js │ │ ├── router.js │ │ ├── routes │ │ │ ├── .gitkeep │ │ │ ├── admin │ │ │ │ ├── create.js │ │ │ │ ├── edit.js │ │ │ │ └── index.js │ │ │ ├── employees.js │ │ │ ├── index.js │ │ │ ├── pictures.js │ │ │ ├── post.js │ │ │ ├── post │ │ │ │ └── detail.js │ │ │ └── products.js │ │ ├── serializers │ │ │ ├── author.js │ │ │ ├── comment.js │ │ │ ├── commenter.js │ │ │ ├── employee.js │ │ │ ├── imageable.js │ │ │ ├── picture.js │ │ │ ├── post.js │ │ │ └── product.js │ │ ├── services │ │ │ ├── authors.js │ │ │ ├── commenters.js │ │ │ ├── comments.js │ │ │ ├── employees.js │ │ │ ├── imageables.js │ │ │ ├── pictures.js │ │ │ ├── posts.js │ │ │ └── products.js │ │ ├── styles │ │ │ └── app.css │ │ └── templates │ │ │ ├── admin │ │ │ ├── create.hbs │ │ │ ├── edit.hbs │ │ │ └── index.hbs │ │ │ ├── application.hbs │ │ │ ├── components │ │ │ ├── .gitkeep │ │ │ └── form-post.hbs │ │ │ ├── employees.hbs │ │ │ ├── employees │ │ │ └── detail.hbs │ │ │ ├── index.hbs │ │ │ ├── pictures.hbs │ │ │ ├── pictures │ │ │ └── detail.hbs │ │ │ ├── post.hbs │ │ │ ├── post │ │ │ ├── comments.hbs │ │ │ └── detail.hbs │ │ │ ├── products.hbs │ │ │ └── products │ │ │ └── detail.hbs │ ├── config │ │ └── environment.js │ └── public │ │ ├── crossdomain.xml │ │ └── robots.txt ├── helpers │ ├── destroy-app.js │ ├── module-for-acceptance.js │ ├── resolver.js │ ├── resources.js │ └── start-app.js ├── index.html ├── test-helper.js └── unit │ ├── .gitkeep │ ├── adapters │ └── application-test.js │ ├── initializers │ ├── model-setup-test.js │ └── store-test.js │ ├── mixins │ ├── authorization-test.js │ ├── resource-operations-test.js │ ├── service-cache-test.js │ └── transforms-test.js │ ├── models │ └── resource-test.js │ ├── serializers │ └── application-test.js │ ├── services │ └── store-test.js │ └── utils │ ├── attr-test.js │ ├── is-test.js │ ├── to-many-test.js │ ├── to-one-test.js │ ├── transform-map-test.js │ └── transforms-test.js ├── vendor └── .gitkeep ├── yarn.lock └── yuidoc.json /.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/.bowerrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/.editorconfig -------------------------------------------------------------------------------- /.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/.ember-cli -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/.travis.yml -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/README.md -------------------------------------------------------------------------------- /addon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/adapters/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/addon/adapters/application.js -------------------------------------------------------------------------------- /addon/initializers/model-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/addon/initializers/model-setup.js -------------------------------------------------------------------------------- /addon/initializers/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/addon/initializers/store.js -------------------------------------------------------------------------------- /addon/mixins/adapter-api-host-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/addon/mixins/adapter-api-host-proxy.js -------------------------------------------------------------------------------- /addon/mixins/authorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/addon/mixins/authorization.js -------------------------------------------------------------------------------- /addon/mixins/resource-operations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/addon/mixins/resource-operations.js -------------------------------------------------------------------------------- /addon/mixins/service-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/addon/mixins/service-cache.js -------------------------------------------------------------------------------- /addon/mixins/transforms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/addon/mixins/transforms.js -------------------------------------------------------------------------------- /addon/models/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/addon/models/resource.js -------------------------------------------------------------------------------- /addon/serializers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/addon/serializers/application.js -------------------------------------------------------------------------------- /addon/services/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/addon/services/store.js -------------------------------------------------------------------------------- /addon/utils/attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/addon/utils/attr.js -------------------------------------------------------------------------------- /addon/utils/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/addon/utils/is.js -------------------------------------------------------------------------------- /addon/utils/related-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/addon/utils/related-proxy.js -------------------------------------------------------------------------------- /addon/utils/to-many.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/addon/utils/to-many.js -------------------------------------------------------------------------------- /addon/utils/to-one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/addon/utils/to-one.js -------------------------------------------------------------------------------- /addon/utils/transform-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/addon/utils/transform-map.js -------------------------------------------------------------------------------- /addon/utils/transforms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/addon/utils/transforms.js -------------------------------------------------------------------------------- /app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/adapters/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/app/adapters/application.js -------------------------------------------------------------------------------- /app/initializers/model-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/app/initializers/model-setup.js -------------------------------------------------------------------------------- /app/initializers/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/app/initializers/store.js -------------------------------------------------------------------------------- /app/mixins/authorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/app/mixins/authorization.js -------------------------------------------------------------------------------- /app/mixins/service-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/app/mixins/service-cache.js -------------------------------------------------------------------------------- /app/mixins/transforms.js: -------------------------------------------------------------------------------- 1 | export { default } from 'ember-jsonapi-resources/mixins/transforms'; 2 | -------------------------------------------------------------------------------- /app/models/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/app/models/resource.js -------------------------------------------------------------------------------- /app/serializers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/app/serializers/application.js -------------------------------------------------------------------------------- /app/services/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/app/services/store.js -------------------------------------------------------------------------------- /blueprints/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/.jshintrc -------------------------------------------------------------------------------- /blueprints/addon-import/files/__root__/__path__/__name__.js: -------------------------------------------------------------------------------- 1 | export { default } from '<%= modulePath %>'; 2 | -------------------------------------------------------------------------------- /blueprints/addon-import/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/addon-import/index.js -------------------------------------------------------------------------------- /blueprints/ember-jsonapi-resources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/ember-jsonapi-resources/index.js -------------------------------------------------------------------------------- /blueprints/jsonapi-adapter-test/files/tests/unit/__path__/__test__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-adapter-test/files/tests/unit/__path__/__test__.js -------------------------------------------------------------------------------- /blueprints/jsonapi-adapter-test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-adapter-test/index.js -------------------------------------------------------------------------------- /blueprints/jsonapi-adapter/files/__root__/__path__/__name__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-adapter/files/__root__/__path__/__name__.js -------------------------------------------------------------------------------- /blueprints/jsonapi-adapter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-adapter/index.js -------------------------------------------------------------------------------- /blueprints/jsonapi-blueprint/files/blueprints/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-blueprint/files/blueprints/.jshintrc -------------------------------------------------------------------------------- /blueprints/jsonapi-blueprint/files/blueprints/__name__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-blueprint/files/blueprints/__name__/index.js -------------------------------------------------------------------------------- /blueprints/jsonapi-blueprint/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-blueprint/index.js -------------------------------------------------------------------------------- /blueprints/jsonapi-dictionary-test/files/tests/unit/utils/dictionaries/__name__-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-dictionary-test/files/tests/unit/utils/dictionaries/__name__-test.js -------------------------------------------------------------------------------- /blueprints/jsonapi-dictionary-test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-dictionary-test/index.js -------------------------------------------------------------------------------- /blueprints/jsonapi-dictionary/files/__root__/utils/dictionaries/__name__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-dictionary/files/__root__/utils/dictionaries/__name__.js -------------------------------------------------------------------------------- /blueprints/jsonapi-dictionary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-dictionary/index.js -------------------------------------------------------------------------------- /blueprints/jsonapi-initializer-test/files/tests/unit/initializers/__name__-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-initializer-test/files/tests/unit/initializers/__name__-test.js -------------------------------------------------------------------------------- /blueprints/jsonapi-initializer-test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-initializer-test/index.js -------------------------------------------------------------------------------- /blueprints/jsonapi-initializer/files/__root__/initializers/__name__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-initializer/files/__root__/initializers/__name__.js -------------------------------------------------------------------------------- /blueprints/jsonapi-initializer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-initializer/index.js -------------------------------------------------------------------------------- /blueprints/jsonapi-model-test/files/tests/unit/__path__/__test__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-model-test/files/tests/unit/__path__/__test__.js -------------------------------------------------------------------------------- /blueprints/jsonapi-model-test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-model-test/index.js -------------------------------------------------------------------------------- /blueprints/jsonapi-model/files/__root__/__path__/__name__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-model/files/__root__/__path__/__name__.js -------------------------------------------------------------------------------- /blueprints/jsonapi-model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-model/index.js -------------------------------------------------------------------------------- /blueprints/jsonapi-resource/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-resource/index.js -------------------------------------------------------------------------------- /blueprints/jsonapi-serializer-test/files/tests/unit/__path__/__test__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-serializer-test/files/tests/unit/__path__/__test__.js -------------------------------------------------------------------------------- /blueprints/jsonapi-serializer-test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-serializer-test/index.js -------------------------------------------------------------------------------- /blueprints/jsonapi-serializer/files/__root__/__path__/__name__.js: -------------------------------------------------------------------------------- 1 | <%= importStatement %> 2 | 3 | export default ApplicationSerializer.extend({ 4 | }); 5 | -------------------------------------------------------------------------------- /blueprints/jsonapi-serializer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-serializer/index.js -------------------------------------------------------------------------------- /blueprints/jsonapi-service-test/files/tests/unit/__path__/__test__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-service-test/files/tests/unit/__path__/__test__.js -------------------------------------------------------------------------------- /blueprints/jsonapi-service-test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-service-test/index.js -------------------------------------------------------------------------------- /blueprints/jsonapi-service/files/__root__/__path__/__resource__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-service/files/__root__/__path__/__resource__.js -------------------------------------------------------------------------------- /blueprints/jsonapi-service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-service/index.js -------------------------------------------------------------------------------- /blueprints/jsonapi-transform-mixin/files/__root__/mixins/__name__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-transform-mixin/files/__root__/mixins/__name__.js -------------------------------------------------------------------------------- /blueprints/jsonapi-transform-mixin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-transform-mixin/index.js -------------------------------------------------------------------------------- /blueprints/jsonapi-transform-test/files/tests/unit/__path__/__test__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-transform-test/files/tests/unit/__path__/__test__.js -------------------------------------------------------------------------------- /blueprints/jsonapi-transform-test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-transform-test/index.js -------------------------------------------------------------------------------- /blueprints/jsonapi-transform/files/__root__/__path__/__name__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-transform/files/__root__/__path__/__name__.js -------------------------------------------------------------------------------- /blueprints/jsonapi-transform/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/blueprints/jsonapi-transform/index.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/bower.json -------------------------------------------------------------------------------- /config/ember-try.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/config/ember-try.js -------------------------------------------------------------------------------- /config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/config/environment.js -------------------------------------------------------------------------------- /ember-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/ember-cli-build.js -------------------------------------------------------------------------------- /fixtures/api/authors/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/fixtures/api/authors/1.json -------------------------------------------------------------------------------- /fixtures/api/employees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/fixtures/api/employees.json -------------------------------------------------------------------------------- /fixtures/api/employees/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/fixtures/api/employees/1.json -------------------------------------------------------------------------------- /fixtures/api/pictures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/fixtures/api/pictures.json -------------------------------------------------------------------------------- /fixtures/api/pictures/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/fixtures/api/pictures/1.json -------------------------------------------------------------------------------- /fixtures/api/pictures/1/imageable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/fixtures/api/pictures/1/imageable.json -------------------------------------------------------------------------------- /fixtures/api/pictures/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/fixtures/api/pictures/5.json -------------------------------------------------------------------------------- /fixtures/api/pictures/5/imageable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/fixtures/api/pictures/5/imageable.json -------------------------------------------------------------------------------- /fixtures/api/posts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/fixtures/api/posts.json -------------------------------------------------------------------------------- /fixtures/api/posts/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/fixtures/api/posts/1.json -------------------------------------------------------------------------------- /fixtures/api/supervisors/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/fixtures/api/supervisors/2.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/index.js -------------------------------------------------------------------------------- /lib/json-to-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/lib/json-to-module.js -------------------------------------------------------------------------------- /node-tests/blueprints/jsonapi-resource-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/node-tests/blueprints/jsonapi-resource-test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/package.json -------------------------------------------------------------------------------- /server/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "node": true 3 | } 4 | -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/server/index.js -------------------------------------------------------------------------------- /server/proxies/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/server/proxies/api.js -------------------------------------------------------------------------------- /testem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/testem.js -------------------------------------------------------------------------------- /tests/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/.jshintrc -------------------------------------------------------------------------------- /tests/acceptance/polymorphic-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/acceptance/polymorphic-test.js -------------------------------------------------------------------------------- /tests/blanket-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/blanket-options.js -------------------------------------------------------------------------------- /tests/dummy/app/adapters/author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/adapters/author.js -------------------------------------------------------------------------------- /tests/dummy/app/adapters/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/adapters/comment.js -------------------------------------------------------------------------------- /tests/dummy/app/adapters/commenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/adapters/commenter.js -------------------------------------------------------------------------------- /tests/dummy/app/adapters/employee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/adapters/employee.js -------------------------------------------------------------------------------- /tests/dummy/app/adapters/imageable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/adapters/imageable.js -------------------------------------------------------------------------------- /tests/dummy/app/adapters/picture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/adapters/picture.js -------------------------------------------------------------------------------- /tests/dummy/app/adapters/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/adapters/post.js -------------------------------------------------------------------------------- /tests/dummy/app/adapters/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/adapters/product.js -------------------------------------------------------------------------------- /tests/dummy/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/app.js -------------------------------------------------------------------------------- /tests/dummy/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/components/form-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/components/form-post.js -------------------------------------------------------------------------------- /tests/dummy/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/controllers/admin/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/controllers/admin/edit.js -------------------------------------------------------------------------------- /tests/dummy/app/controllers/post/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/controllers/post/comments.js -------------------------------------------------------------------------------- /tests/dummy/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/index.html -------------------------------------------------------------------------------- /tests/dummy/app/initializers/author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/initializers/author.js -------------------------------------------------------------------------------- /tests/dummy/app/initializers/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/initializers/comment.js -------------------------------------------------------------------------------- /tests/dummy/app/initializers/commenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/initializers/commenter.js -------------------------------------------------------------------------------- /tests/dummy/app/initializers/employee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/initializers/employee.js -------------------------------------------------------------------------------- /tests/dummy/app/initializers/imageable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/initializers/imageable.js -------------------------------------------------------------------------------- /tests/dummy/app/initializers/picture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/initializers/picture.js -------------------------------------------------------------------------------- /tests/dummy/app/initializers/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/initializers/post.js -------------------------------------------------------------------------------- /tests/dummy/app/initializers/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/initializers/product.js -------------------------------------------------------------------------------- /tests/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/models/author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/models/author.js -------------------------------------------------------------------------------- /tests/dummy/app/models/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/models/comment.js -------------------------------------------------------------------------------- /tests/dummy/app/models/commenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/models/commenter.js -------------------------------------------------------------------------------- /tests/dummy/app/models/employee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/models/employee.js -------------------------------------------------------------------------------- /tests/dummy/app/models/person.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/models/person.js -------------------------------------------------------------------------------- /tests/dummy/app/models/picture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/models/picture.js -------------------------------------------------------------------------------- /tests/dummy/app/models/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/models/post.js -------------------------------------------------------------------------------- /tests/dummy/app/models/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/models/product.js -------------------------------------------------------------------------------- /tests/dummy/app/models/supervisor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/models/supervisor.js -------------------------------------------------------------------------------- /tests/dummy/app/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/resolver.js -------------------------------------------------------------------------------- /tests/dummy/app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/router.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/routes/admin/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/routes/admin/create.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/admin/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/routes/admin/edit.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/admin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/routes/admin/index.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/employees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/routes/employees.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/routes/index.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/pictures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/routes/pictures.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/routes/post.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/post/detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/routes/post/detail.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/routes/products.js -------------------------------------------------------------------------------- /tests/dummy/app/serializers/author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/serializers/author.js -------------------------------------------------------------------------------- /tests/dummy/app/serializers/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/serializers/comment.js -------------------------------------------------------------------------------- /tests/dummy/app/serializers/commenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/serializers/commenter.js -------------------------------------------------------------------------------- /tests/dummy/app/serializers/employee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/serializers/employee.js -------------------------------------------------------------------------------- /tests/dummy/app/serializers/imageable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/serializers/imageable.js -------------------------------------------------------------------------------- /tests/dummy/app/serializers/picture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/serializers/picture.js -------------------------------------------------------------------------------- /tests/dummy/app/serializers/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/serializers/post.js -------------------------------------------------------------------------------- /tests/dummy/app/serializers/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/serializers/product.js -------------------------------------------------------------------------------- /tests/dummy/app/services/authors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/services/authors.js -------------------------------------------------------------------------------- /tests/dummy/app/services/commenters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/services/commenters.js -------------------------------------------------------------------------------- /tests/dummy/app/services/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/services/comments.js -------------------------------------------------------------------------------- /tests/dummy/app/services/employees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/services/employees.js -------------------------------------------------------------------------------- /tests/dummy/app/services/imageables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/services/imageables.js -------------------------------------------------------------------------------- /tests/dummy/app/services/pictures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/services/pictures.js -------------------------------------------------------------------------------- /tests/dummy/app/services/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/services/posts.js -------------------------------------------------------------------------------- /tests/dummy/app/services/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/services/products.js -------------------------------------------------------------------------------- /tests/dummy/app/styles/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/templates/admin/create.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/templates/admin/create.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/admin/edit.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/templates/admin/edit.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/admin/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/templates/admin/index.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/application.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/templates/application.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/templates/components/form-post.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/templates/components/form-post.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/employees.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/templates/employees.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/employees/detail.hbs: -------------------------------------------------------------------------------- 1 |

Name: {{model.name}}

2 | 3 | {{outlet}} 4 | -------------------------------------------------------------------------------- /tests/dummy/app/templates/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/templates/index.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/pictures.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/templates/pictures.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/pictures/detail.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/templates/pictures/detail.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/post.hbs: -------------------------------------------------------------------------------- 1 | {{outlet}} 2 | -------------------------------------------------------------------------------- /tests/dummy/app/templates/post/comments.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/templates/post/comments.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/post/detail.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/templates/post/detail.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/products.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/app/templates/products.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/products/detail.hbs: -------------------------------------------------------------------------------- 1 |

Name: {{model.name}}

2 | 3 | {{outlet}} 4 | -------------------------------------------------------------------------------- /tests/dummy/config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/config/environment.js -------------------------------------------------------------------------------- /tests/dummy/public/crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/dummy/public/crossdomain.xml -------------------------------------------------------------------------------- /tests/dummy/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/helpers/destroy-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/helpers/destroy-app.js -------------------------------------------------------------------------------- /tests/helpers/module-for-acceptance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/helpers/module-for-acceptance.js -------------------------------------------------------------------------------- /tests/helpers/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/helpers/resolver.js -------------------------------------------------------------------------------- /tests/helpers/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/helpers/resources.js -------------------------------------------------------------------------------- /tests/helpers/start-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/helpers/start-app.js -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/test-helper.js -------------------------------------------------------------------------------- /tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/adapters/application-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/unit/adapters/application-test.js -------------------------------------------------------------------------------- /tests/unit/initializers/model-setup-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/unit/initializers/model-setup-test.js -------------------------------------------------------------------------------- /tests/unit/initializers/store-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/unit/initializers/store-test.js -------------------------------------------------------------------------------- /tests/unit/mixins/authorization-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/unit/mixins/authorization-test.js -------------------------------------------------------------------------------- /tests/unit/mixins/resource-operations-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/unit/mixins/resource-operations-test.js -------------------------------------------------------------------------------- /tests/unit/mixins/service-cache-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/unit/mixins/service-cache-test.js -------------------------------------------------------------------------------- /tests/unit/mixins/transforms-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/unit/mixins/transforms-test.js -------------------------------------------------------------------------------- /tests/unit/models/resource-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/unit/models/resource-test.js -------------------------------------------------------------------------------- /tests/unit/serializers/application-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/unit/serializers/application-test.js -------------------------------------------------------------------------------- /tests/unit/services/store-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/unit/services/store-test.js -------------------------------------------------------------------------------- /tests/unit/utils/attr-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/unit/utils/attr-test.js -------------------------------------------------------------------------------- /tests/unit/utils/is-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/unit/utils/is-test.js -------------------------------------------------------------------------------- /tests/unit/utils/to-many-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/unit/utils/to-many-test.js -------------------------------------------------------------------------------- /tests/unit/utils/to-one-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/unit/utils/to-one-test.js -------------------------------------------------------------------------------- /tests/unit/utils/transform-map-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/unit/utils/transform-map-test.js -------------------------------------------------------------------------------- /tests/unit/utils/transforms-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/tests/unit/utils/transforms-test.js -------------------------------------------------------------------------------- /vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/yarn.lock -------------------------------------------------------------------------------- /yuidoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhandler/ember-jsonapi-resources/HEAD/yuidoc.json --------------------------------------------------------------------------------