DuendeSoftware / BFF

Framework for ASP.NET Core to secure SPAs using the Backend-for-Frontend (BFF) pattern
Other
333 stars 75 forks source link

Async GetUserClaims, GetManagementClaims #181

Open josephdecock opened 1 year ago

josephdecock commented 1 year ago

Some users have asked to be able to do async things in GetUserClaims/GetManagementClaims.

To allow that, we could either

  1. add new methods named the same but with Async as a suffix, or
  2. change the signature of the existing methods.

2 involves a breaking change, but 1 keeps the api simpler.

josephdecock commented 1 year ago

See https://github.com/DuendeSoftware/Support/issues/828