File tree Expand file tree Collapse file tree 3 files changed +16
-0
lines changed
src/lib_components/service Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,11 @@ export interface IRouteService {
82
82
* @returns
83
83
*/
84
84
getNeonUtilitiesDataStackRPath : ( ) => string ;
85
+ /**
86
+ * Gets the path to the observatory status page
87
+ * @returns
88
+ */
89
+ getObservatoryStatusPath : ( ) => string ;
85
90
/**
86
91
* Gets the path to the theme detail page
87
92
* @param theme
Original file line number Diff line number Diff line change @@ -60,6 +60,9 @@ var RouteService = {
60
60
getNeonUtilitiesDataStackRPath : function getNeonUtilitiesDataStackRPath ( ) {
61
61
return "" . concat ( _NeonEnvironment . default . getWebHost ( ) , "/resources/learning-hub/tutorials/neondatastackr" ) ;
62
62
} ,
63
+ getObservatoryStatusPath : function getObservatoryStatusPath ( ) {
64
+ return "" . concat ( _NeonEnvironment . default . getWebHost ( ) , "/impact/observatory-blog/observatory-status" ) ;
65
+ } ,
63
66
getThemeDetailPath : function getThemeDetailPath ( theme ) {
64
67
return "" . concat ( _NeonEnvironment . default . getWebHost ( ) , "/data/data-themes/" ) . concat ( theme ) ;
65
68
} ,
Original file line number Diff line number Diff line change @@ -85,6 +85,11 @@ export interface IRouteService {
85
85
* @returns
86
86
*/
87
87
getNeonUtilitiesDataStackRPath : ( ) => string ;
88
+ /**
89
+ * Gets the path to the observatory status page
90
+ * @returns
91
+ */
92
+ getObservatoryStatusPath : ( ) => string ;
88
93
/**
89
94
* Gets the path to the theme detail page
90
95
* @param theme
@@ -204,6 +209,9 @@ const RouteService: IRouteService = {
204
209
getNeonUtilitiesDataStackRPath : ( ) : string => (
205
210
`${ NeonEnvironment . getWebHost ( ) } /resources/learning-hub/tutorials/neondatastackr`
206
211
) ,
212
+ getObservatoryStatusPath : ( ) : string => (
213
+ `${ NeonEnvironment . getWebHost ( ) } /impact/observatory-blog/observatory-status`
214
+ ) ,
207
215
getThemeDetailPath : ( theme : string ) : string => (
208
216
`${ NeonEnvironment . getWebHost ( ) } /data/data-themes/${ theme } `
209
217
) ,
You can’t perform that action at this time.
0 commit comments