Skip to content

Commit

Permalink
feat: Add did resolver and method support per OpSession
Browse files Browse the repository at this point in the history
  • Loading branch information
nklomp committed Feb 25, 2022
1 parent eebce18 commit a9f7afc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ export class DidAuthSiopOpAuthenticator implements IAgentPlugin {
sessionId,
identifier: args.identifier,
expiresIn: args.expiresIn,
resolver: args.resolver,
perDidResolvers: args.perDidResolvers,
supportedDidMethods: args.supportedDidMethods,
context,
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ export interface IGetSiopSessionArgs {

export interface IRegisterSiopSessionArgs {
identifier: IIdentifier
resolver?: Resolvable
perDidResolvers?: PerDidResolver[]
supportedDidMethods?: string[]
sessionId?: string
expiresIn?: number
Expand Down

0 comments on commit a9f7afc

Please sign in to comment.