mirror of
https://github.com/discourse/discourse.git
synced 2025-02-10 23:26:32 +08:00
12 lines
244 B
JavaScript
12 lines
244 B
JavaScript
export default Discourse.Route.extend({
|
|
model: function() {
|
|
return Discourse.ajax("/about.json").then(function(result) {
|
|
return result.about;
|
|
});
|
|
},
|
|
|
|
titleToken: function() {
|
|
return I18n.t('about.simple_title');
|
|
}
|
|
});
|