28 lines
765 B
JavaScript
28 lines
765 B
JavaScript
import discourseComputed from "discourse-common/utils/decorators";
|
|
import { gt } from "@ember/object/computed";
|
|
import Controller from "@ember/controller";
|
|
|
|
export default Controller.extend({
|
|
faqOverriden: gt("siteSettings.faq_url.length", 0),
|
|
|
|
@discourseComputed
|
|
contactInfo() {
|
|
if (this.siteSettings.contact_url) {
|
|
return I18n.t("about.contact_info", {
|
|
contact_info:
|
|
"<a href='" +
|
|
this.siteSettings.contact_url +
|
|
"' target='_blank'>" +
|
|
this.siteSettings.contact_url +
|
|
"</a>"
|
|
});
|
|
} else if (this.siteSettings.contact_email) {
|
|
return I18n.t("about.contact_info", {
|
|
contact_info: this.siteSettings.contact_email
|
|
});
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
});
|