TryGhost/Ghost

View on GitHub
ghost/admin/app/serializers/theme.js

Summary

Maintainability
A
0 mins
Test Coverage
import ApplicationSerializer from './application';
import classic from 'ember-classic-decorator';

@classic
export default class Theme extends ApplicationSerializer {
    primaryKey = 'name';

    attrs = {
        gscanErrors: {key: 'errors'}
    };
}