2013-02-14 12:10:53 -05:00
|
|
|
class EducationController < ApplicationController
|
|
|
|
|
|
|
|
before_filter :ensure_logged_in
|
|
|
|
|
|
|
|
def show
|
|
|
|
raise Discourse::InvalidAccess.new unless params[:id] =~ /^[a-z0-9\-\_]+$/
|
2013-03-28 23:50:07 -04:00
|
|
|
raise Discourse::NotFound.new if I18n.t("education.#{params[:id]}", default: MISSING_KEY) == MISSING_KEY
|
2013-02-25 11:42:20 -05:00
|
|
|
|
2013-02-14 12:10:53 -05:00
|
|
|
education_posts_text = I18n.t('education.until_posts', count: SiteSetting.educate_until_posts)
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
markdown_content = MultisiteI18n.t("education.#{params[:id]}",
|
|
|
|
site_name: SiteSetting.title,
|
2013-02-14 12:10:53 -05:00
|
|
|
education_posts_text: education_posts_text)
|
|
|
|
render text: PrettyText.cook(markdown_content)
|
|
|
|
end
|
|
|
|
|
2013-03-28 23:50:07 -04:00
|
|
|
private
|
|
|
|
MISSING_KEY = '_MISSING_KEY_'.freeze
|
|
|
|
|
2013-02-14 12:10:53 -05:00
|
|
|
end
|