forked from ember-learn/ember-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ember-learn#1073 from ember-learn/update-lts-page-…
…for-data-versioning-strategy Update LTS page for data breaking lockstep
- Loading branch information
Showing
5 changed files
with
271 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
import { hash } from 'rsvp'; | ||
import Route from '@ember/routing/route'; | ||
import { inject as service } from '@ember/service'; | ||
|
||
export default class ReleasesLtsRoute extends Route { | ||
@service store; | ||
|
||
model() { | ||
return this.store.find('project', 'ember/lts'); | ||
return hash({ | ||
ember: this.store.find('project', 'ember/lts'), | ||
emberData: this.store.find('project', 'emberData/lts'), | ||
}); | ||
} | ||
} |
Oops, something went wrong.