mirror of
https://github.com/discourse/discourse.git
synced 2025-02-14 09:22:46 +08:00
8 lines
220 B
JavaScript
8 lines
220 B
JavaScript
export default Ember.Controller.extend({
|
|
|
|
stopNotificiationsText: function() {
|
|
return I18n.t("topic.unsubscribe.stop_notifications", { title: this.get("model.fancyTitle") });
|
|
}.property("model.fancyTitle"),
|
|
|
|
});
|