You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This code takes the status list VC ID and uses it to compute the endpoint for creating the status list, based on an assumption that the VC ID might use a different public/external URL than an internal one (with a proxy in place to point the external one to the internal one). The way it does the computation today is by searching for the last /status-lists/ path component in the VC ID, but instead, we could perhaps use the baseUrl from the instance's status list configuration. This would not remove the requirement for the baseUrl to end in /status-lists, but it might be a cleaner computation.
The text was updated successfully, but these errors were encountered:
See: https://github.com/digitalbazaar/bedrock-vc-issuer/blob/v28.4.0/lib/ListSource.js#L38-L42
This code takes the status list VC ID and uses it to compute the endpoint for creating the status list, based on an assumption that the VC ID might use a different public/external URL than an internal one (with a proxy in place to point the external one to the internal one). The way it does the computation today is by searching for the last
/status-lists/
path component in the VC ID, but instead, we could perhaps use thebaseUrl
from the instance's status list configuration. This would not remove the requirement for thebaseUrl
to end in/status-lists
, but it might be a cleaner computation.The text was updated successfully, but these errors were encountered: