1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/app/routes/error404.js

16 lines
240 B
JavaScript
Raw Normal View History

2015-02-13 05:22:32 +01:00
import Ember from 'ember';
const {Route} = Ember;
export default Route.extend({
controllerName: 'error',
templateName: 'error',
titleToken: 'Error',
model() {
return {
status: 404
};
}
});