├── .bowerrc ├── .editorconfig ├── .ember-cli ├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── .watchmanconfig ├── LICENSE.md ├── README.md ├── TODO.md ├── addon ├── .gitkeep ├── adapter.js ├── serializer.js └── services │ └── drupal-mapper.js ├── app ├── .gitkeep └── services │ └── drupal-mapper.js ├── bower.json ├── config ├── ember-try.js └── environment.js ├── ember-cli-build.js ├── index.js ├── package.json ├── testem.js ├── tests ├── .jshintrc ├── dummy │ ├── app │ │ ├── app.js │ │ ├── components │ │ │ └── .gitkeep │ │ ├── controllers │ │ │ └── .gitkeep │ │ ├── helpers │ │ │ └── .gitkeep │ │ ├── index.html │ │ ├── models │ │ │ └── .gitkeep │ │ ├── resolver.js │ │ ├── router.js │ │ ├── routes │ │ │ └── .gitkeep │ │ ├── styles │ │ │ └── app.css │ │ └── templates │ │ │ └── components │ │ │ └── .gitkeep │ ├── config │ │ └── environment.js │ └── public │ │ ├── crossdomain.xml │ │ └── robots.txt ├── helpers │ ├── destroy-app.js │ ├── module-for-acceptance.js │ ├── resolver.js │ └── start-app.js ├── index.html ├── integration │ └── .gitkeep ├── test-helper.js └── unit │ └── .gitkeep └── vendor └── .gitkeep /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components", 3 | "analytics": false 4 | } 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # editorconfig.org 4 | 5 | root = true 6 | 7 | 8 | [*] 9 | end_of_line = lf 10 | charset = utf-8 11 | trim_trailing_whitespace = true 12 | insert_final_newline = true 13 | indent_style = space 14 | indent_size = 2 15 | 16 | [*.hbs] 17 | insert_final_newline = false 18 | 19 | [*.{diff,md}] 20 | trim_trailing_whitespace = false 21 | -------------------------------------------------------------------------------- /.ember-cli: -------------------------------------------------------------------------------- 1 | { 2 | /** 3 | Ember CLI sends analytics information by default. The data is completely 4 | anonymous, but there are times when you might want to disable this behavior. 5 | 6 | Setting `disableAnalytics` to true will prevent any data from being sent. 7 | */ 8 | "disableAnalytics": false 9 | } 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See http://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # compiled output 4 | /dist 5 | /tmp 6 | 7 | # dependencies 8 | /node_modules 9 | /bower_components 10 | 11 | # misc 12 | /.sass-cache 13 | /connect.lock 14 | /coverage/* 15 | /libpeerconnection.log 16 | npm-debug.log* 17 | testem.log 18 | /.vscode 19 | /typings 20 | jsconfig.json 21 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "predef": [ 3 | "document", 4 | "window", 5 | "-Promise" 6 | ], 7 | "browser": true, 8 | "boss": true, 9 | "curly": true, 10 | "debug": false, 11 | "devel": true, 12 | "eqeqeq": true, 13 | "evil": true, 14 | "forin": false, 15 | "immed": false, 16 | "laxbreak": false, 17 | "newcap": true, 18 | "noarg": true, 19 | "noempty": false, 20 | "nonew": false, 21 | "nomen": false, 22 | "onevar": false, 23 | "plusplus": false, 24 | "regexp": false, 25 | "undef": true, 26 | "sub": true, 27 | "strict": false, 28 | "white": false, 29 | "eqnull": true, 30 | "esversion": 6, 31 | "unused": true 32 | } 33 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /bower_components 2 | /config/ember-try.js 3 | /dist 4 | /tests 5 | /tmp 6 | **/.gitkeep 7 | .bowerrc 8 | .editorconfig 9 | .ember-cli 10 | .gitignore 11 | .jshintrc 12 | .watchmanconfig 13 | .travis.yml 14 | bower.json 15 | ember-cli-build.js 16 | testem.js 17 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | --- 2 | language: node_js 3 | node_js: 4 | - "4" 5 | 6 | sudo: false 7 | 8 | cache: 9 | directories: 10 | - node_modules 11 | 12 | env: 13 | # we recommend testing LTS's and latest stable release (bonus points to beta/canary) 14 | - EMBER_TRY_SCENARIO=ember-1.13 15 | - EMBER_TRY_SCENARIO=ember-lts-2.4 16 | - EMBER_TRY_SCENARIO=ember-release 17 | - EMBER_TRY_SCENARIO=ember-beta 18 | - EMBER_TRY_SCENARIO=ember-canary 19 | 20 | matrix: 21 | fast_finish: true 22 | allow_failures: 23 | - env: EMBER_TRY_SCENARIO=ember-canary 24 | 25 | before_install: 26 | - npm config set spin false 27 | - npm install -g bower 28 | - bower --version 29 | - npm install phantomjs-prebuilt 30 | - node_modules/phantomjs-prebuilt/bin/phantomjs --version 31 | 32 | install: 33 | - npm install 34 | - bower install 35 | 36 | script: 37 | # Usually, it's ok to finish the test scenario without reverting 38 | # to the addon's original dependency state, skipping "cleanup". 39 | - ember try:one $EMBER_TRY_SCENARIO test --skip-cleanup 40 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ember-data-drupal 2 | 3 | ## Requirements 4 | 5 | - Version 0.3.x targets the ALPHA 3 release of Drupal 8's JSON API module. 6 | - Version 0.4.x will target ALPHA 4 which has many changes and the plan is to jump to a 1.0 release the same time as the module does. 7 | 8 | Initial docs can be found at http://boris.com.au/ember-data-drupal. 9 | 10 | A demo Ember application is at https://github.com/boztek/ember-drupal-demo-front. 11 | 12 | You can compare the tag before-drupal with the final result to see the changes to the models required to support a particular Drupal content model. 13 | 14 | The demo app uses Mirage for a fake JSON API backend and can run with or without an actual Drupal server. 15 | 16 | A demo CMS to plug in is at https://github.com/boztek/ember-drupal-demo-cms. 17 | 18 | ## Installation 19 | 20 | ember install ember-data-drupal 21 | 22 | ## Usage 23 | 24 | This addon provides an adapter and serializer that can be used application wide or on a per model basis in the usual way: 25 | 26 | // app/adapter/application.js 27 | import DrupalJSONAPIAdapter from 'ember-data-drupal/adapter'; 28 | export default DrupalJSONAPIAdapter.extend(); 29 | 30 | // app/serializer/application.js 31 | import DrupalJSONAPISerializer from 'ember-data-drupal/serializer'; 32 | export default DrupalJSONAPISerializer.extend(); 33 | 34 | ### Configuration 35 | 36 | Mapping of Ember data models to Drupal entities is currently done in application config: 37 | 38 | e.g. 39 | 40 | // config/environment.js 41 | module.exports = function(environment) { 42 | var ENV = { 43 | drupalEntityModels: { 44 | // Map 'article' ember data model to Drupal entity type 'node'. 45 | "article": { }, 46 | // Map 'public-event' ember data model to Drupal entity type 'node', 47 | // entity bundle type 'event'. 48 | // Also map event model fields 'location' and 'relatedArticle' to 49 | // 'field_location' and 'field_related_article' payload keys respectively. 50 | "public-event": { entity: 'node', bundle: 'event', fields: ['location', 'relatedArticle'] }, 51 | } 52 | } 53 | } 54 | 55 | ## Running 56 | 57 | * `ember serve` 58 | * Visit your app at [http://localhost:4200](http://localhost:4200). 59 | 60 | ## Running Tests 61 | 62 | * `npm test` (Runs `ember try:each` to test your addon against multiple Ember versions) 63 | * `ember test` 64 | * `ember test --server` 65 | 66 | ## Building 67 | 68 | * `ember build` 69 | 70 | For more information on using ember-cli, visit [http://ember-cli.com/](http://ember-cli.com/). 71 | -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- 1 | # TODO 2 | 3 | Version 1.0 4 | 5 | - [x] Document current state w/ tutorial or example 6 | - [x] Default to node mapping with singular model to resource name 7 | - [x] Better support for store.query 8 | - [ ] Tests to plan scope of support and confirm store features that work 9 | - [ ] Provide factories instead of manual D8 json:api module payload fixtures 10 | - [ ] Blueprint to create adapter/serializer 11 | - [ ] Investigate moving mappings to mapper service instead of config 12 | - [ ] Code review 13 | 14 | Version 1.1 15 | 16 | - [ ] Login via REST 17 | - [ ] record.save() etc. 18 | -------------------------------------------------------------------------------- /addon/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boztek/ember-data-drupal/f18cfb730c695921944ba2fc1689e8a7329fa796/addon/.gitkeep -------------------------------------------------------------------------------- /addon/adapter.js: -------------------------------------------------------------------------------- 1 | import Ember from "ember"; 2 | import DS from "ember-data"; 3 | 4 | const { 5 | get, 6 | inject: { service } 7 | } = Ember; 8 | 9 | export default DS.JSONAPIAdapter.extend({ 10 | namespace: 'jsonapi', 11 | drupalMapper: service(), 12 | 13 | pathForType(modelName) { 14 | let drupalMapper = get(this, 'drupalMapper'), 15 | entity = drupalMapper.entityFor(modelName), 16 | bundle = drupalMapper.bundleFor(modelName); 17 | return entity + '/' + bundle; 18 | }, 19 | 20 | query(store, type, query) { 21 | let drupalQuery = { filter: {} }, 22 | queryFields = Object.keys(query), 23 | mapper = get(this, 'drupalMapper'); 24 | 25 | queryFields.forEach((field) => { 26 | let fieldName = mapper.fieldName(type.modelName, field); 27 | drupalQuery.filter[fieldName] = drupalQuery.filter[fieldName] || {}; 28 | drupalQuery.filter[fieldName]['value'] = query[field]; 29 | }); 30 | 31 | var url = this.buildURL(type.modelName, null, null, 'query', drupalQuery); 32 | 33 | if (this.sortQueryParams) { 34 | query = this.sortQueryParams(drupalQuery); 35 | } 36 | 37 | return this.ajax(url, 'GET', { data: query }); 38 | }, 39 | }); 40 | -------------------------------------------------------------------------------- /addon/serializer.js: -------------------------------------------------------------------------------- 1 | import DS from 'ember-data'; 2 | import Ember from 'ember'; 3 | import { singularize } from 'ember-inflector'; 4 | 5 | const { 6 | JSONAPISerializer, 7 | normalizeModelName, 8 | } = DS; 9 | 10 | const { 11 | get, 12 | inject: { service }, 13 | String: { underscore }, 14 | } = Ember; 15 | 16 | const DRUPAL_FIELD_PREFIX = 'field_'; 17 | 18 | const DrupalJSONAPISerializer = JSONAPISerializer.extend({ 19 | drupalMapper: service(), 20 | 21 | keyForModelAttribute: function(modelName, attr) { 22 | return get(this, 'drupalMapper').fieldName(modelName, attr); 23 | }, 24 | 25 | keyForModelRelationship: function(modelName, attr) { 26 | return get(this, 'drupalMapper').fieldName(modelName, attr); 27 | }, 28 | 29 | modelNameFromPayloadKey(key) { 30 | let parts = key.split('--'); 31 | if (parts.length === 2) { 32 | let bundle = parts[1]; 33 | return singularize(normalizeModelName(bundle)); 34 | } 35 | return singularize(normalizeModelName(key)); 36 | }, 37 | 38 | extractAttributes(modelClass, resourceHash) { 39 | let modelClassString = modelClass.toString(), 40 | modelName = modelClassString.split(':')[1], 41 | attributes = {}; 42 | if (resourceHash.attributes) { 43 | modelClass.eachAttribute((key) => { 44 | let attributeKey = this.keyForModelAttribute(modelName, key); 45 | if (resourceHash.attributes[attributeKey] !== undefined) { 46 | attributes[key] = resourceHash.attributes[attributeKey]; 47 | } 48 | }); 49 | } 50 | return attributes; 51 | }, 52 | 53 | extractRelationships(modelClass, resourceHash) { 54 | let modelClassString = modelClass.toString(), 55 | modelName = modelClassString.split(':')[1], 56 | relationships = {}; 57 | if (resourceHash.relationships) { 58 | modelClass.eachRelationship((key) => { 59 | let relationshipKey = this.keyForModelRelationship(modelName, key); 60 | if (resourceHash.relationships[relationshipKey] !== undefined) { 61 | let relationshipHash = resourceHash.relationships[relationshipKey]; 62 | relationships[key] = this.extractRelationship(relationshipHash); 63 | } 64 | }); 65 | } 66 | return relationships; 67 | }, 68 | }); 69 | 70 | export default DrupalJSONAPISerializer; -------------------------------------------------------------------------------- /addon/services/drupal-mapper.js: -------------------------------------------------------------------------------- 1 | import Ember from 'ember'; 2 | 3 | const { 4 | getOwner, 5 | Service, 6 | String: { underscore } 7 | } = Ember; 8 | 9 | const DRUPAL_FIELD_PREFIX = 'field_'; 10 | 11 | export default Service.extend({ 12 | init() { 13 | let config = getOwner(this).resolveRegistration('config:environment'); 14 | this._super(...arguments); 15 | this.map = config.drupalEntityModels || {}; 16 | }, 17 | 18 | entityFor(modelName) { 19 | let modelMap = this.map[modelName] || {}; 20 | return modelMap.entity || 'node'; 21 | }, 22 | 23 | bundleFor(modelName) { 24 | let modelMap = this.map[modelName] || {}; 25 | return modelMap.bundle || modelName; 26 | }, 27 | 28 | fieldName(modelName, fieldName) { 29 | let modelMap = this.map[modelName] || {}, 30 | fields = modelMap.fields || []; 31 | if (fields.includes(fieldName)) { 32 | return DRUPAL_FIELD_PREFIX + underscore(fieldName); 33 | } 34 | return underscore(fieldName); 35 | } 36 | }); -------------------------------------------------------------------------------- /app/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boztek/ember-data-drupal/f18cfb730c695921944ba2fc1689e8a7329fa796/app/.gitkeep -------------------------------------------------------------------------------- /app/services/drupal-mapper.js: -------------------------------------------------------------------------------- 1 | import DrupalMapper from 'ember-data-drupal/services/drupal-mapper'; 2 | 3 | export default DrupalMapper; -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ember-data-drupal", 3 | "dependencies": { 4 | "ember": "~2.9.0", 5 | "ember-cli-shims": "0.1.3" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /config/ember-try.js: -------------------------------------------------------------------------------- 1 | /*jshint node:true*/ 2 | module.exports = { 3 | scenarios: [ 4 | { 5 | name: 'ember-1.13', 6 | bower: { 7 | dependencies: { 8 | 'ember': '~1.13.0' 9 | }, 10 | resolutions: { 11 | 'ember': '~1.13.0' 12 | } 13 | } 14 | }, 15 | { 16 | name: 'ember-lts-2.4', 17 | bower: { 18 | dependencies: { 19 | 'ember': 'components/ember#lts-2-4' 20 | }, 21 | resolutions: { 22 | 'ember': 'lts-2-4' 23 | } 24 | } 25 | }, 26 | { 27 | name: 'ember-release', 28 | bower: { 29 | dependencies: { 30 | 'ember': 'components/ember#release' 31 | }, 32 | resolutions: { 33 | 'ember': 'release' 34 | } 35 | } 36 | }, 37 | { 38 | name: 'ember-beta', 39 | bower: { 40 | dependencies: { 41 | 'ember': 'components/ember#beta' 42 | }, 43 | resolutions: { 44 | 'ember': 'beta' 45 | } 46 | } 47 | }, 48 | { 49 | name: 'ember-canary', 50 | bower: { 51 | dependencies: { 52 | 'ember': 'components/ember#canary' 53 | }, 54 | resolutions: { 55 | 'ember': 'canary' 56 | } 57 | } 58 | } 59 | ] 60 | }; 61 | -------------------------------------------------------------------------------- /config/environment.js: -------------------------------------------------------------------------------- 1 | /*jshint node:true*/ 2 | 'use strict'; 3 | 4 | module.exports = function(/* environment, appConfig */) { 5 | return { }; 6 | }; 7 | -------------------------------------------------------------------------------- /ember-cli-build.js: -------------------------------------------------------------------------------- 1 | /*jshint node:true*/ 2 | /* global require, module */ 3 | var EmberAddon = require('ember-cli/lib/broccoli/ember-addon'); 4 | 5 | module.exports = function(defaults) { 6 | var app = new EmberAddon(defaults, { 7 | // Add options here 8 | }); 9 | 10 | /* 11 | This build file specifies the options for the dummy test app of this 12 | addon, located in `/tests/dummy` 13 | This build file does *not* influence how the addon or the app using it 14 | behave. You most likely want to be modifying `./index.js` or app's build file 15 | */ 16 | 17 | return app.toTree(); 18 | }; 19 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /* jshint node: true */ 2 | 'use strict'; 3 | 4 | module.exports = { 5 | name: 'ember-data-drupal' 6 | }; 7 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ember-data-drupal", 3 | "version": "0.2.4", 4 | "description": "Ember data support for the Drupal 8 CMS (using https://www.drupal.org/project/jsonapi)", 5 | "directories": { 6 | "doc": "doc", 7 | "test": "tests" 8 | }, 9 | "scripts": { 10 | "build": "ember build", 11 | "start": "ember server", 12 | "test": "ember try:each" 13 | }, 14 | "repository": "http://github.com/boztek/ember-data-drupal", 15 | "engines": { 16 | "node": ">= 0.12.0" 17 | }, 18 | "author": "", 19 | "license": "MIT", 20 | "devDependencies": { 21 | "broccoli-asset-rev": "^2.4.5", 22 | "ember-ajax": "^2.4.1", 23 | "ember-cli": "2.9.1", 24 | "ember-cli-app-version": "^2.0.0", 25 | "ember-cli-dependency-checker": "^1.3.0", 26 | "ember-cli-htmlbars": "^1.0.10", 27 | "ember-cli-htmlbars-inline-precompile": "^0.3.3", 28 | "ember-cli-inject-live-reload": "^1.4.1", 29 | "ember-cli-jshint": "^1.0.4", 30 | "ember-cli-qunit": "^3.0.1", 31 | "ember-cli-release": "^0.2.9", 32 | "ember-cli-sri": "^2.1.0", 33 | "ember-cli-test-loader": "^1.1.0", 34 | "ember-cli-uglify": "^1.2.0", 35 | "ember-data": "^2.9.0", 36 | "ember-disable-prototype-extensions": "^1.1.0", 37 | "ember-export-application-global": "^1.0.5", 38 | "ember-load-initializers": "^0.5.1", 39 | "ember-resolver": "^2.0.3", 40 | "ember-welcome-page": "^1.0.3", 41 | "loader.js": "^4.0.10" 42 | }, 43 | "keywords": [ 44 | "ember-addon", 45 | "ember", 46 | "data", 47 | "adapter", 48 | "serializer", 49 | "drupal" 50 | ], 51 | "dependencies": { 52 | "ember-cli-babel": "^5.1.7" 53 | }, 54 | "ember-addon": { 55 | "configPath": "tests/dummy/config" 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /testem.js: -------------------------------------------------------------------------------- 1 | /*jshint node:true*/ 2 | module.exports = { 3 | "framework": "qunit", 4 | "test_page": "tests/index.html?hidepassed", 5 | "disable_watching": true, 6 | "launch_in_ci": [ 7 | "PhantomJS" 8 | ], 9 | "launch_in_dev": [ 10 | "PhantomJS", 11 | "Chrome" 12 | ] 13 | }; 14 | -------------------------------------------------------------------------------- /tests/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "predef": [ 3 | "document", 4 | "window", 5 | "location", 6 | "setTimeout", 7 | "$", 8 | "-Promise", 9 | "define", 10 | "console", 11 | "visit", 12 | "exists", 13 | "fillIn", 14 | "click", 15 | "keyEvent", 16 | "triggerEvent", 17 | "find", 18 | "findWithAssert", 19 | "wait", 20 | "DS", 21 | "andThen", 22 | "currentURL", 23 | "currentPath", 24 | "currentRouteName" 25 | ], 26 | "node": false, 27 | "browser": false, 28 | "boss": true, 29 | "curly": true, 30 | "debug": false, 31 | "devel": false, 32 | "eqeqeq": true, 33 | "evil": true, 34 | "forin": false, 35 | "immed": false, 36 | "laxbreak": false, 37 | "newcap": true, 38 | "noarg": true, 39 | "noempty": false, 40 | "nonew": false, 41 | "nomen": false, 42 | "onevar": false, 43 | "plusplus": false, 44 | "regexp": false, 45 | "undef": true, 46 | "sub": true, 47 | "strict": false, 48 | "white": false, 49 | "eqnull": true, 50 | "esversion": 6, 51 | "unused": true 52 | } 53 | -------------------------------------------------------------------------------- /tests/dummy/app/app.js: -------------------------------------------------------------------------------- 1 | import Ember from 'ember'; 2 | import Resolver from './resolver'; 3 | import loadInitializers from 'ember-load-initializers'; 4 | import config from './config/environment'; 5 | 6 | let App; 7 | 8 | Ember.MODEL_FACTORY_INJECTIONS = true; 9 | 10 | App = Ember.Application.extend({ 11 | modulePrefix: config.modulePrefix, 12 | podModulePrefix: config.podModulePrefix, 13 | Resolver 14 | }); 15 | 16 | loadInitializers(App, config.modulePrefix); 17 | 18 | export default App; 19 | -------------------------------------------------------------------------------- /tests/dummy/app/components/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boztek/ember-data-drupal/f18cfb730c695921944ba2fc1689e8a7329fa796/tests/dummy/app/components/.gitkeep -------------------------------------------------------------------------------- /tests/dummy/app/controllers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boztek/ember-data-drupal/f18cfb730c695921944ba2fc1689e8a7329fa796/tests/dummy/app/controllers/.gitkeep -------------------------------------------------------------------------------- /tests/dummy/app/helpers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boztek/ember-data-drupal/f18cfb730c695921944ba2fc1689e8a7329fa796/tests/dummy/app/helpers/.gitkeep -------------------------------------------------------------------------------- /tests/dummy/app/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |