TryGhost/Ghost

View on GitHub
ghost/admin/app/models/notification.js

Summary

Maintainability
A
1 hr
Test Coverage
import Model, {attr} from '@ember-data/model';

export default Model.extend({
    custom: attr('boolean'),
    dismissible: attr('boolean'),
    key: attr('string'),
    message: attr('string'),
    status: attr('string'),
    type: attr('string')
});