* Get mapped users
(options: {
search?: string;
limit?: number;
offset?: number;
} = {})
| 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 |
nothing calls this directly
no test coverage detected