Lines Matching refs:roster
104 }).then(roster => {
107 const userCount = Object.keys(roster).length
128 return liborg.ls(org, opts).then(roster => {
131 if (roster[user]) {
132 newRoster[user] = roster[user]
134 roster = newRoster
137 output(JSON.stringify(roster, null, 2))
140 Object.keys(roster).forEach(user => {
141 output([user, roster[user]].join('\t'))
145 Object.keys(roster).sort().forEach(user => {
146 table.push([user, roster[user]])