Files
buuh/examples/mailbox/models/spam.js
T

17 lines
400 B
JavaScript
Raw Normal View History

2016-05-12 12:59:27 +07:00
module.exports = {
2016-05-23 04:00:29 +09:00
namespace: 'spam',
2016-05-12 12:59:27 +07:00
state: {
messages: [
{
id: 3,
subject: 'You have one the lottery!!!111ONEONE',
from: '419@thereallotteryhonest.com',
to: 'user@example.com',
date: new Date(),
body: 'You have ONE the lottery! You only have to send us a small amount of monies to claim your prize'
}
]
},
reducers: { }
}