├── .editorconfig ├── .ember-cli ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .template-lintrc.js ├── .travis.yml ├── .watchmanconfig ├── LICENSE.md ├── README.md ├── addon ├── .gitkeep ├── index.js ├── mixins │ ├── url-templates-serializer.js │ └── url-templates.js └── utils │ └── flatten-query-params.js ├── app ├── .gitkeep └── utils │ └── flatten-query-params.js ├── config ├── ember-try.js └── environment.js ├── ember-cli-build.js ├── index.js ├── jsconfig.json ├── package.json ├── testem.js ├── tests ├── .eslintrc.js ├── acceptance │ ├── basic-url-template-test.js │ ├── simple-relationships-test.js │ └── using-attributes-test.js ├── dummy │ ├── app │ │ ├── adapters │ │ │ ├── application.js │ │ │ ├── comment.js │ │ │ └── post.js │ │ ├── app.js │ │ ├── components │ │ │ └── .gitkeep │ │ ├── controllers │ │ │ ├── .gitkeep │ │ │ └── post.js │ │ ├── helpers │ │ │ └── .gitkeep │ │ ├── index.html │ │ ├── models │ │ │ ├── .gitkeep │ │ │ ├── author.js │ │ │ ├── comment.js │ │ │ ├── post.js │ │ │ └── reaction.js │ │ ├── resolver.js │ │ ├── router.js │ │ ├── routes │ │ │ ├── .gitkeep │ │ │ ├── application.js │ │ │ ├── post.js │ │ │ ├── posts.js │ │ │ └── search.js │ │ ├── serializers │ │ │ └── post.js │ │ ├── styles │ │ │ └── app.css │ │ ├── templates │ │ │ ├── application.hbs │ │ │ ├── components │ │ │ │ └── .gitkeep │ │ │ ├── post.hbs │ │ │ ├── posts.hbs │ │ │ └── search.hbs │ │ └── utils │ │ │ └── deparam.js │ ├── config │ │ ├── environment.js │ │ └── targets.js │ ├── mirage │ │ ├── config.js │ │ ├── factories │ │ │ ├── author.js │ │ │ ├── comment.js │ │ │ ├── post.js │ │ │ └── reaction.js │ │ ├── models │ │ │ ├── author.js │ │ │ ├── comment.js │ │ │ ├── post.js │ │ │ └── reaction.js │ │ ├── scenarios │ │ │ └── default.js │ │ └── serializers │ │ │ ├── application.js │ │ │ └── post.js │ └── public │ │ └── robots.txt ├── helpers │ └── .gitkeep ├── index.html ├── integration │ └── .gitkeep ├── test-helper.js └── unit │ ├── .gitkeep │ ├── mixins │ ├── url-templates-serializer-test.js │ └── url-templates-test.js │ └── utils │ └── flatten-query-params-test.js ├── vendor └── .gitkeep └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/.editorconfig -------------------------------------------------------------------------------- /.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/.ember-cli -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/.npmignore -------------------------------------------------------------------------------- /.template-lintrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | extends: 'recommended' 5 | }; 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/.travis.yml -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/README.md -------------------------------------------------------------------------------- /addon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/addon/index.js -------------------------------------------------------------------------------- /addon/mixins/url-templates-serializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/addon/mixins/url-templates-serializer.js -------------------------------------------------------------------------------- /addon/mixins/url-templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/addon/mixins/url-templates.js -------------------------------------------------------------------------------- /addon/utils/flatten-query-params.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/addon/utils/flatten-query-params.js -------------------------------------------------------------------------------- /app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/utils/flatten-query-params.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/app/utils/flatten-query-params.js -------------------------------------------------------------------------------- /config/ember-try.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/config/ember-try.js -------------------------------------------------------------------------------- /config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/config/environment.js -------------------------------------------------------------------------------- /ember-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/ember-cli-build.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | name: require('./package').name 5 | }; 6 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/package.json -------------------------------------------------------------------------------- /testem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/testem.js -------------------------------------------------------------------------------- /tests/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/tests/.eslintrc.js -------------------------------------------------------------------------------- /tests/acceptance/basic-url-template-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/tests/acceptance/basic-url-template-test.js -------------------------------------------------------------------------------- /tests/acceptance/simple-relationships-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/tests/acceptance/simple-relationships-test.js -------------------------------------------------------------------------------- /tests/acceptance/using-attributes-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/tests/acceptance/using-attributes-test.js -------------------------------------------------------------------------------- /tests/dummy/app/adapters/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/tests/dummy/app/adapters/application.js -------------------------------------------------------------------------------- /tests/dummy/app/adapters/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/tests/dummy/app/adapters/comment.js -------------------------------------------------------------------------------- /tests/dummy/app/adapters/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/tests/dummy/app/adapters/post.js -------------------------------------------------------------------------------- /tests/dummy/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/tests/dummy/app/app.js -------------------------------------------------------------------------------- /tests/dummy/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/controllers/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/tests/dummy/app/controllers/post.js -------------------------------------------------------------------------------- /tests/dummy/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/tests/dummy/app/index.html -------------------------------------------------------------------------------- /tests/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/models/author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/tests/dummy/app/models/author.js -------------------------------------------------------------------------------- /tests/dummy/app/models/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/tests/dummy/app/models/comment.js -------------------------------------------------------------------------------- /tests/dummy/app/models/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/tests/dummy/app/models/post.js -------------------------------------------------------------------------------- /tests/dummy/app/models/reaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/tests/dummy/app/models/reaction.js -------------------------------------------------------------------------------- /tests/dummy/app/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/tests/dummy/app/resolver.js -------------------------------------------------------------------------------- /tests/dummy/app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/tests/dummy/app/router.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/routes/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/tests/dummy/app/routes/application.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/tests/dummy/app/routes/post.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/tests/dummy/app/routes/posts.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/tests/dummy/app/routes/search.js -------------------------------------------------------------------------------- /tests/dummy/app/serializers/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amiel/ember-data-url-templates/HEAD/tests/dummy/app/serializers/post.js -------------------------------------------------------------------------------- /tests/dummy/app/styles/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/templates/application.hbs: -------------------------------------------------------------------------------- 1 |