├── .editorconfig ├── .ember-cli ├── .eslintignore ├── .eslintrc.js ├── .github_changelog_generator ├── .gitignore ├── .npmignore ├── .template-lintrc.js ├── .travis.yml ├── .watchmanconfig ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── addon ├── .gitkeep ├── actions │ ├── action.js │ ├── custom.js │ ├── model.js │ └── resource.js ├── index.js ├── mixins │ └── adapter.js ├── serializers │ ├── json-api.js │ └── rest.js └── utils │ ├── normalize-payload.js │ └── url-builder.js ├── config ├── ember-try.js ├── environment.js └── release.js ├── ember-cli-build.js ├── index.js ├── logo.png ├── package.json ├── testem.js ├── tests ├── dummy │ ├── app │ │ ├── adapters │ │ │ ├── bike.js │ │ │ └── car.js │ │ ├── app.js │ │ ├── components │ │ │ ├── .gitkeep │ │ │ ├── model-action │ │ │ │ ├── component.js │ │ │ │ └── template.hbs │ │ │ ├── page-sections │ │ │ │ ├── documentation │ │ │ │ │ └── template.hbs │ │ │ │ ├── examples │ │ │ │ │ ├── burn-action │ │ │ │ │ │ ├── component.js │ │ │ │ │ │ └── template.hbs │ │ │ │ │ ├── post-action │ │ │ │ │ │ ├── component.js │ │ │ │ │ │ └── template.hbs │ │ │ │ │ ├── template.hbs │ │ │ │ │ └── user-action │ │ │ │ │ │ ├── component.js │ │ │ │ │ │ └── template.hbs │ │ │ │ ├── footer │ │ │ │ │ └── template.hbs │ │ │ │ ├── getting-started │ │ │ │ │ └── template.hbs │ │ │ │ └── header │ │ │ │ │ ├── navbar │ │ │ │ │ └── template.hbs │ │ │ │ │ └── template.hbs │ │ │ └── scroll-to │ │ │ │ ├── component.js │ │ │ │ └── template.hbs │ │ ├── controllers │ │ │ └── .gitkeep │ │ ├── helpers │ │ │ └── .gitkeep │ │ ├── index.html │ │ ├── models │ │ │ ├── .gitkeep │ │ │ ├── bike.js │ │ │ ├── bridge.js │ │ │ ├── car.js │ │ │ ├── post.js │ │ │ └── user.js │ │ ├── resolver.js │ │ ├── router.js │ │ ├── routes │ │ │ └── .gitkeep │ │ ├── serializers │ │ │ ├── application.js │ │ │ └── bike.js │ │ ├── services │ │ │ └── server.js │ │ ├── styles │ │ │ └── app.sass │ │ └── templates │ │ │ └── application.hbs │ ├── config │ │ ├── environment.js │ │ ├── optional-features.json │ │ └── targets.js │ └── public │ │ ├── favicon.png │ │ ├── images │ │ ├── atom.png │ │ ├── logo.png │ │ └── og-image.jpg │ │ └── robots.txt ├── helpers │ └── .gitkeep ├── index.html ├── integration │ └── .gitkeep ├── test-helper.js └── unit │ ├── .gitkeep │ └── models │ ├── bike-test.js │ ├── car-test.js │ └── post-test.js └── vendor └── .gitkeep /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/.editorconfig -------------------------------------------------------------------------------- /.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/.ember-cli -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github_changelog_generator: -------------------------------------------------------------------------------- 1 | future-release=v3.3.0 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/.npmignore -------------------------------------------------------------------------------- /.template-lintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/.template-lintrc.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/.travis.yml -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/README.md -------------------------------------------------------------------------------- /addon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/actions/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/addon/actions/action.js -------------------------------------------------------------------------------- /addon/actions/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/addon/actions/custom.js -------------------------------------------------------------------------------- /addon/actions/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/addon/actions/model.js -------------------------------------------------------------------------------- /addon/actions/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/addon/actions/resource.js -------------------------------------------------------------------------------- /addon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/addon/index.js -------------------------------------------------------------------------------- /addon/mixins/adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/addon/mixins/adapter.js -------------------------------------------------------------------------------- /addon/serializers/json-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/addon/serializers/json-api.js -------------------------------------------------------------------------------- /addon/serializers/rest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/addon/serializers/rest.js -------------------------------------------------------------------------------- /addon/utils/normalize-payload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/addon/utils/normalize-payload.js -------------------------------------------------------------------------------- /addon/utils/url-builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/addon/utils/url-builder.js -------------------------------------------------------------------------------- /config/ember-try.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/config/ember-try.js -------------------------------------------------------------------------------- /config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/config/environment.js -------------------------------------------------------------------------------- /config/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/config/release.js -------------------------------------------------------------------------------- /ember-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/ember-cli-build.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/index.js -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/package.json -------------------------------------------------------------------------------- /testem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/testem.js -------------------------------------------------------------------------------- /tests/dummy/app/adapters/bike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/adapters/bike.js -------------------------------------------------------------------------------- /tests/dummy/app/adapters/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/adapters/car.js -------------------------------------------------------------------------------- /tests/dummy/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/app.js -------------------------------------------------------------------------------- /tests/dummy/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/components/model-action/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/components/model-action/component.js -------------------------------------------------------------------------------- /tests/dummy/app/components/model-action/template.hbs: -------------------------------------------------------------------------------- 1 | {{status.published}} 2 | -------------------------------------------------------------------------------- /tests/dummy/app/components/page-sections/documentation/template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/components/page-sections/documentation/template.hbs -------------------------------------------------------------------------------- /tests/dummy/app/components/page-sections/examples/burn-action/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/components/page-sections/examples/burn-action/component.js -------------------------------------------------------------------------------- /tests/dummy/app/components/page-sections/examples/burn-action/template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/components/page-sections/examples/burn-action/template.hbs -------------------------------------------------------------------------------- /tests/dummy/app/components/page-sections/examples/post-action/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/components/page-sections/examples/post-action/component.js -------------------------------------------------------------------------------- /tests/dummy/app/components/page-sections/examples/post-action/template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/components/page-sections/examples/post-action/template.hbs -------------------------------------------------------------------------------- /tests/dummy/app/components/page-sections/examples/template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/components/page-sections/examples/template.hbs -------------------------------------------------------------------------------- /tests/dummy/app/components/page-sections/examples/user-action/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/components/page-sections/examples/user-action/component.js -------------------------------------------------------------------------------- /tests/dummy/app/components/page-sections/examples/user-action/template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/components/page-sections/examples/user-action/template.hbs -------------------------------------------------------------------------------- /tests/dummy/app/components/page-sections/footer/template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/components/page-sections/footer/template.hbs -------------------------------------------------------------------------------- /tests/dummy/app/components/page-sections/getting-started/template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/components/page-sections/getting-started/template.hbs -------------------------------------------------------------------------------- /tests/dummy/app/components/page-sections/header/navbar/template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/components/page-sections/header/navbar/template.hbs -------------------------------------------------------------------------------- /tests/dummy/app/components/page-sections/header/template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/components/page-sections/header/template.hbs -------------------------------------------------------------------------------- /tests/dummy/app/components/scroll-to/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/components/scroll-to/component.js -------------------------------------------------------------------------------- /tests/dummy/app/components/scroll-to/template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/components/scroll-to/template.hbs -------------------------------------------------------------------------------- /tests/dummy/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/index.html -------------------------------------------------------------------------------- /tests/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/models/bike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/models/bike.js -------------------------------------------------------------------------------- /tests/dummy/app/models/bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/models/bridge.js -------------------------------------------------------------------------------- /tests/dummy/app/models/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/models/car.js -------------------------------------------------------------------------------- /tests/dummy/app/models/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/models/post.js -------------------------------------------------------------------------------- /tests/dummy/app/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/models/user.js -------------------------------------------------------------------------------- /tests/dummy/app/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/resolver.js -------------------------------------------------------------------------------- /tests/dummy/app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/router.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/serializers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/serializers/application.js -------------------------------------------------------------------------------- /tests/dummy/app/serializers/bike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/serializers/bike.js -------------------------------------------------------------------------------- /tests/dummy/app/services/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/services/server.js -------------------------------------------------------------------------------- /tests/dummy/app/styles/app.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/styles/app.sass -------------------------------------------------------------------------------- /tests/dummy/app/templates/application.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/app/templates/application.hbs -------------------------------------------------------------------------------- /tests/dummy/config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/config/environment.js -------------------------------------------------------------------------------- /tests/dummy/config/optional-features.json: -------------------------------------------------------------------------------- 1 | { 2 | "jquery-integration": true 3 | } 4 | -------------------------------------------------------------------------------- /tests/dummy/config/targets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/config/targets.js -------------------------------------------------------------------------------- /tests/dummy/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/public/favicon.png -------------------------------------------------------------------------------- /tests/dummy/public/images/atom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/public/images/atom.png -------------------------------------------------------------------------------- /tests/dummy/public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/public/images/logo.png -------------------------------------------------------------------------------- /tests/dummy/public/images/og-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/dummy/public/images/og-image.jpg -------------------------------------------------------------------------------- /tests/dummy/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/test-helper.js -------------------------------------------------------------------------------- /tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/models/bike-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/unit/models/bike-test.js -------------------------------------------------------------------------------- /tests/unit/models/car-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/unit/models/car-test.js -------------------------------------------------------------------------------- /tests/unit/models/post-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmberExperts/ember-custom-actions/HEAD/tests/unit/models/post-test.js -------------------------------------------------------------------------------- /vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------