mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
Replace MultisiteI18n hack with SiteContent and admin editing.
This commit is contained in:
@@ -6,11 +6,16 @@ class EducationController < ApplicationController
|
||||
raise Discourse::InvalidAccess.new unless params[:id] =~ /^[a-z0-9\-\_]+$/
|
||||
raise Discourse::NotFound.new if I18n.t("education.#{params[:id]}", default: MISSING_KEY) == MISSING_KEY
|
||||
|
||||
|
||||
education_posts_text = I18n.t('education.until_posts', count: SiteSetting.educate_until_posts)
|
||||
|
||||
markdown_content = MultisiteI18n.t("education.#{params[:id]}",
|
||||
site_name: SiteSetting.title,
|
||||
education_posts_text: education_posts_text)
|
||||
markdown_content = ""
|
||||
if params[:id] == 'new-topic'
|
||||
markdown_content = SiteContent.content_for(:education_new_topic, education_posts_text: education_posts_text)
|
||||
else
|
||||
markdown_content = SiteContent.content_for(:education_new_reply, education_posts_text: education_posts_text)
|
||||
end
|
||||
|
||||
render text: PrettyText.cook(markdown_content)
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user