31 lines
691 B
JavaScript
31 lines
691 B
JavaScript
/**
|
|
The routes used for rendering static content
|
|
|
|
@class StaticRoute
|
|
@extends Discourse.Route
|
|
@namespace Discourse
|
|
@module Discourse
|
|
**/
|
|
Discourse.StaticController.pages.forEach(function(page) {
|
|
|
|
Discourse[(page.capitalize()) + "Route"] = Discourse.Route.extend({
|
|
|
|
renderTemplate: function() {
|
|
this.render('static');
|
|
},
|
|
|
|
setupController: function() {
|
|
var config_key = Discourse.StaticController.configs[page];
|
|
if (config_key && Discourse.SiteSettings[config_key].length > 0) {
|
|
Discourse.URL.redirectTo(Discourse.SiteSettings[config_key]);
|
|
} else {
|
|
this.controllerFor('static').loadPath("/" + page);
|
|
}
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|