|
7 | 7 |
|
8 | 8 | from apps.accounts.views.oauth2_profile import openidconnect_userinfo |
9 | 9 | from apps.fhir.bluebutton.views.home import fhir_conformance, fhir_conformance_v2 |
10 | | -from apps.wellknown.views.openid import smart_configuration |
| 10 | +from apps.wellknown.views.openid import smart_configuration, smart_configuration_v3 |
11 | 11 | from hhs_oauth_server.hhs_oauth_server_context import IsAppInstalled |
12 | 12 | from .views import testobject |
13 | 13 |
|
@@ -45,7 +45,7 @@ def robots_txt(request): |
45 | 45 | path("v2/fhir/.well-known/smart-configuration", smart_configuration, name="smart_configuration"), |
46 | 46 | path("v2/fhir/metadata", fhir_conformance_v2, name="fhir_conformance_metadata_v2"), |
47 | 47 | path("v2/fhir/", include("apps.fhir.bluebutton.v2.urls")), |
48 | | - path("v3/fhir/.well-known/smart-configuration", smart_configuration, name="smart_configuration_v3"), |
| 48 | + path("v3/fhir/.well-known/smart-configuration", smart_configuration_v3, name="smart_configuration_v3"), |
49 | 49 | path("v3/fhir/metadata", fhir_conformance_v2, name="fhir_conformance_metadata_v3"), |
50 | 50 | path("v3/fhir/", include("apps.fhir.bluebutton.v3.urls")), |
51 | 51 | path("v2/o/", include("apps.dot_ext.v2.urls")), |
|
0 commit comments