mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 11:34:24 +03:00
12 lines
215 B
JavaScript
12 lines
215 B
JavaScript
|
var Error404Route = Ember.Route.extend({
|
||
|
controllerName: 'error',
|
||
|
templateName: 'error',
|
||
|
|
||
|
model: function () {
|
||
|
return {
|
||
|
status: 404
|
||
|
};
|
||
|
}
|
||
|
});
|
||
|
|
||
|
export default Error404Route;
|