MCPcopy Create free account
hub / github.com/dfinity/orbit / editUser

Method editUser

apps/wallet/src/services/station.service.ts:346–362  ·  view source on GitHub ↗
(input: EditUserOperationInput)

Source from the content-addressed store, hash-verified

344 }
345
346 async editUser(input: EditUserOperationInput): Promise<Request> {
347 const result = await this.actor.create_request({
348 execution_plan: [{ Immediate: null }],
349 expiration_dt: [],
350 title: [],
351 summary: [],
352 operation: { EditUser: input },
353 deduplication_key: [],
354 tags: [],
355 });
356
357 if (variantIs(result, 'Err')) {
358 throw result.Err;
359 }
360
361 return result.Ok.request;
362 }
363
364 async listUsers(
365 {

Callers

nothing calls this directly

Calls 2

variantIsFunction · 0.90
create_requestMethod · 0.45

Tested by

no test coverage detected