From 56f335b71d69376312075ed36ccfc9f17504c031 Mon Sep 17 00:00:00 2001 From: Yoshua Wuyts Date: Thu, 12 May 2016 19:37:02 +0700 Subject: [PATCH] example-mailbox: v4 --- examples/mailbox/models/inbox.js | 12 ++++++------ examples/mailbox/models/sent.js | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/examples/mailbox/models/inbox.js b/examples/mailbox/models/inbox.js index 8de6ffb..c055a8c 100644 --- a/examples/mailbox/models/inbox.js +++ b/examples/mailbox/models/inbox.js @@ -3,18 +3,18 @@ module.exports = { messages: [ { id: 1, - subject: 'Welcome to Ember', - from: 'tomster@emberjs.com', + subject: 'Welcome to Choo', + from: 'choochoo@choojs.com', to: 'user@example.com', date: new Date(), - body: 'Welcome to Ember. We hope you enjoy your stay' + body: 'Welcome to Choo. We hope you enjoy your stay' }, { id: 2, - subject: 'Great Ember Resources', - from: 'tomster@emberjs.com', + subject: 'Great Choo Resources', + from: 'choochoo@choojs.com', to: 'user@example.com', date: new Date(), - body: 'Have you seen embercasts.com? How about emberaddons.com?' + body: 'Have you seen choocasts.com? How about chooaddons.com?' } ] }, diff --git a/examples/mailbox/models/sent.js b/examples/mailbox/models/sent.js index 75b7bb7..0dc4a60 100644 --- a/examples/mailbox/models/sent.js +++ b/examples/mailbox/models/sent.js @@ -3,11 +3,11 @@ module.exports = { messages: [ { id: 4, - subject: 'Should I use Ember', + subject: 'Should I use Choo', from: 'user@example.com', - to: 'tomster@emberjs.com', + to: 'choochoo@choojs.com', date: new Date(), - body: 'Ember looks pretty good, should I use it?' + body: 'Choo looks pretty good, should I use it?' } ] },