MCPcopy Create free account
hub / github.com/adcontextprotocol/adcp / getMappedUsers

Method getMappedUsers

server/src/db/slack-db.ts:272–281  ·  view source on GitHub ↗

* Get mapped users

(options: {
    search?: string;
    limit?: number;
    offset?: number;
  } = {})

Source from the content-addressed store, hash-verified

270 * Get mapped users
271 */
272 async getMappedUsers(options: {
273 search?: string;
274 limit?: number;
275 offset?: number;
276 } = {}): Promise<SlackUserMapping[]> {
277 return this.getAllMappings({
278 ...options,
279 status: 'mapped',
280 });
281 }
282
283 /**
284 * Get mapping statistics

Callers

nothing calls this directly

Calls 1

getAllMappingsMethod · 0.95

Tested by

no test coverage detected