This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/models/group-history.js.es6
2018-06-15 17:03:24 +02:00

10 lines
255 B
JavaScript

import computed from "ember-addons/ember-computed-decorators";
import RestModel from "discourse/models/rest";
export default RestModel.extend({
@computed("action")
actionTitle(action) {
return I18n.t(`group_histories.actions.${action}`);
}
});