Formatting.
This commit is contained in:
parent
4e9097862d
commit
7d3169e5e1
|
@ -312,7 +312,10 @@ class TestConfiguration {
|
||||||
roleId = BUILTIN_ROLE_IDS.POWER
|
roleId = BUILTIN_ROLE_IDS.POWER
|
||||||
) {
|
) {
|
||||||
const globalId = `us_${Math.random()}`
|
const globalId = `us_${Math.random()}`
|
||||||
const resp = await this.globalUser(globalId, roleId === BUILTIN_ROLE_IDS.BUILDER)
|
const resp = await this.globalUser(
|
||||||
|
globalId,
|
||||||
|
roleId === BUILTIN_ROLE_IDS.BUILDER
|
||||||
|
)
|
||||||
return {
|
return {
|
||||||
...resp,
|
...resp,
|
||||||
globalId,
|
globalId,
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
const CouchDB = require("../db")
|
const CouchDB = require("../db")
|
||||||
const {
|
const { getGlobalIDFromUserMetadataID, InternalTables } = require("../db/utils")
|
||||||
getGlobalIDFromUserMetadataID,
|
|
||||||
InternalTables
|
|
||||||
} = require("../db/utils")
|
|
||||||
const { getGlobalUsers } = require("../utilities/workerRequests")
|
const { getGlobalUsers } = require("../utilities/workerRequests")
|
||||||
|
|
||||||
exports.getFullUser = async (ctx, userId) => {
|
exports.getFullUser = async (ctx, userId) => {
|
||||||
|
|
Loading…
Reference in New Issue