Skip to content

Commit

Permalink
Support did:x509 in Authorization Server metadata, allowing credentia…
Browse files Browse the repository at this point in the history
…ls to be issued issued from it
  • Loading branch information
reinkrul committed Nov 19, 2024
1 parent 3553714 commit fd2b4c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auth/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ func (auth *Auth) Configure(config core.ServerConfig) error {
}

func (auth *Auth) SupportedDIDMethods() []string {
return auth.supportedDIDMethods
return append(auth.supportedDIDMethods, "x509")
}

// Start starts the Auth engine (Noop)
Expand Down

0 comments on commit fd2b4c5

Please sign in to comment.