Ghost/ghost/admin/mirage/factories/notification.js
Austin Burdine 52b6668955 deps: ember-cli-mirage@0.2.0
- remove lodash from bower
- move all resources to /mirage instead of /app/mirage
- update endpoints to use ORM
- general cleanup
2017-01-13 15:59:37 +00:00

9 lines
174 B
JavaScript

import {Factory} from 'ember-cli-mirage';
export default Factory.extend({
dismissible: true,
message: 'This is an alert',
status: 'alert',
type: 'error'
});