We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df6a4d0 commit e1387b1Copy full SHA for e1387b1
src/markdown/tutorial/part-2/11-ember-data.md
@@ -15,6 +15,10 @@ During this refactor, you will learn about:
15
* The Ember Data store
16
* Working with adapters and serializers
17
18
+```run:file:create hidden=true cwd=super-rentals filename=app/adapters/application.js
19
+export { default } from '@ember-data/adapter/json-api';
20
+```
21
+
22
## What is Ember Data?
23
24
Now that we've added some features, it's time to do some clean up again!
@@ -82,6 +86,7 @@ Attributes declared with the `@attr` decorator work with the auto-track feature
82
86
```run:command hidden=true cwd=super-rentals
83
87
ember test --path dist
84
88
git add app/models/rental.js
89
+git add app/adapters/application.js
85
90
```
91
92
## Testing Models
0 commit comments