|
|
@@ -41,7 +41,7 @@ module.exports = function(crowi, app, req, locals) {
|
|
|
* return app title
|
|
|
*/
|
|
|
locals.appTitle = function() {
|
|
|
- var config = crowi.getConfig()
|
|
|
+ var config = crowi.getConfig();
|
|
|
return Config.appTitle(config);
|
|
|
}
|
|
|
|
|
|
@@ -49,7 +49,7 @@ module.exports = function(crowi, app, req, locals) {
|
|
|
* return true if enabled
|
|
|
*/
|
|
|
locals.isEnabledPassport = function() {
|
|
|
- var config = crowi.getConfig()
|
|
|
+ var config = crowi.getConfig();
|
|
|
return Config.isEnabledPassport(config);
|
|
|
}
|
|
|
|
|
|
@@ -137,7 +137,7 @@ module.exports = function(crowi, app, req, locals) {
|
|
|
}
|
|
|
|
|
|
locals.behaviorType = function() {
|
|
|
- var config = crowi.getConfig()
|
|
|
+ var config = crowi.getConfig();
|
|
|
return Config.behaviorType(config);
|
|
|
}
|
|
|
|