mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 05:37:34 +03:00
299b59385b
closes #2851 - adds asset paths to ghostPaths as we don't have an asset helper - sends any invalid routes to 404
15 lines
514 B
JavaScript
15 lines
514 B
JavaScript
var ErrorController = Ember.Controller.extend({
|
|
code: function () {
|
|
return this.get('content.status') > 200 ? this.get('content.status') : 500;
|
|
}.property('content.status'),
|
|
message: function () {
|
|
if (this.get('code') === 404) {
|
|
return 'No Ghost Found';
|
|
}
|
|
|
|
return this.get('content.statusText') !== 'error' ? this.get('content.statusText') : 'Internal Server Error';
|
|
}.property('content.statusText'),
|
|
stack: false
|
|
});
|
|
|
|
export default ErrorController; |