File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
lib/components/NeonEnvironment Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ export interface INeonEnvironment {
35
35
getApiLdPath : Record < string , ( ) => string > ;
36
36
getAuthApiPath : Record < string , ( ) => string > ;
37
37
getDownloadApiPath : Record < string , ( ) => string > ;
38
- getDataProductsTaxonTypesPath : ( ) => string ;
38
+ getDataProductTaxonTypesPath : ( ) => string ;
39
39
getTaxonTypeDataProductsPath : ( ) => string ;
40
40
getAuthPath : Record < string , ( ) => string > ;
41
41
authTopics : Record < string , ( ) => string > ;
Original file line number Diff line number Diff line change @@ -157,11 +157,11 @@ var NeonEnvironment = {
157
157
return '/consumer/topic/auth0' ;
158
158
}
159
159
} ,
160
- getDataProductsTaxonTypesPath : function getDataProductsTaxonTypesPath ( ) {
161
- return "" . concat ( NeonEnvironment . getApiPath . taxonomy , "/types" ) ;
160
+ getDataProductTaxonTypesPath : function getDataProductTaxonTypesPath ( ) {
161
+ return "" . concat ( NeonEnvironment . getFullApiPath ( ' taxonomy' ) , "/types" ) ;
162
162
} ,
163
163
getTaxonTypeDataProductsPath : function getTaxonTypeDataProductsPath ( ) {
164
- return "" . concat ( NeonEnvironment . getApiPath . taxonomy , "/products" ) ;
164
+ return "" . concat ( NeonEnvironment . getFullApiPath ( ' taxonomy' ) , "/products" ) ;
165
165
} ,
166
166
getVisusProductsBaseUrl : function getVisusProductsBaseUrl ( ) {
167
167
return process . env . REACT_APP_NEON_VISUS_PRODUCTS_BASE_URL ;
You can’t perform that action at this time.
0 commit comments