mirror of
https://github.com/humhub/humhub.git
synced 2025-01-17 22:28:51 +01:00
16 lines
287 B
JavaScript
16 lines
287 B
JavaScript
humhub.module('user', function(module, require, $) {
|
|
|
|
var isGuest = function() {
|
|
return module.config.isGuest;
|
|
};
|
|
|
|
var guid = function() {
|
|
return module.config.guid;
|
|
};
|
|
|
|
module.export({
|
|
isGuest: isGuest,
|
|
guid: guid
|
|
});
|
|
});
|