|
|
|
@ -39,7 +39,7 @@ var userModule = function () {
|
|
|
|
|
* Get the carbon user object from the session. If not found - it will throw a user not found error.
|
|
|
|
|
* @returns {object} carbon user object
|
|
|
|
|
*/
|
|
|
|
|
privateMethods.getCarbonUser = function () {
|
|
|
|
|
publicMethods.getCarbonUser = function () {
|
|
|
|
|
var carbon = require("carbon");
|
|
|
|
|
var carbonUser = session.get(constants["USER_SESSION_KEY"]);
|
|
|
|
|
var utility = require("/app/modules/utility.js")["utility"];
|
|
|
|
@ -176,7 +176,7 @@ var userModule = function () {
|
|
|
|
|
* @returns {object} a response object with status and content on success.
|
|
|
|
|
*/
|
|
|
|
|
publicMethods.getUser = function (username) {
|
|
|
|
|
var carbonUser = privateMethods.getCarbonUser();
|
|
|
|
|
var carbonUser = publicMethods.getCarbonUser();
|
|
|
|
|
var domain;
|
|
|
|
|
if (username.indexOf('/') > 0) {
|
|
|
|
|
domain = username.substr(0, username.indexOf('/'));
|
|
|
|
@ -206,7 +206,7 @@ var userModule = function () {
|
|
|
|
|
* @returns {object} a response object with status and content on success.
|
|
|
|
|
*/
|
|
|
|
|
publicMethods.getRolesByUsername = function (username) {
|
|
|
|
|
var carbonUser = privateMethods.getCarbonUser();
|
|
|
|
|
var carbonUser = publicMethods.getCarbonUser();
|
|
|
|
|
var domain;
|
|
|
|
|
if (username.indexOf('/') > 0) {
|
|
|
|
|
domain = username.substr(0, username.indexOf('/'));
|
|
|
|
|