Skip to content

Commit

Permalink
fix: rename getRequestedClaims
Browse files Browse the repository at this point in the history
  • Loading branch information
JGiter committed Apr 16, 2021
1 parent 6dde43b commit 3657128
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/cacheServerClient/ICacheServerClient.ts
Expand Up @@ -53,7 +53,7 @@ export interface ICacheServerClient {
isAccepted?: boolean;
parentNamespace?: string;
}) => Promise<Claim[]>;
getRequestedClaims: ({
getClaimsByRequester: ({
did,
isAccepted,
parentNamespace
Expand Down
2 changes: 1 addition & 1 deletion src/cacheServerClient/cacheServerClient.ts
Expand Up @@ -216,7 +216,7 @@ export class CacheServerClient implements ICacheServerClient {
return data;
}

async getRequestedClaims({
async getClaimsByRequester({
did,
isAccepted,
parentNamespace
Expand Down
2 changes: 1 addition & 1 deletion src/iam.ts
Expand Up @@ -1443,7 +1443,7 @@ export class IAM extends IAMBase {

// CLAIMS

async getRequestedClaims({
async getClaimsByRequester({
did,
isAccepted,
parentNamespace
Expand Down

0 comments on commit 3657128

Please sign in to comment.