forked from PYannick/HighFrequencyChecks
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp_server.R
executable file
·24 lines (23 loc) · 909 Bytes
/
app_server.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#' Server
#'
#' This function is internally used to manage the shinyServer
#'
#' @import shiny
#' @import shinydashboard
#' @noRd
#' @keywords internal
app_server <- function(input, output, session) {
## add a reactive value object to pass by elements between objects
AppReactiveValue <- reactiveValues(
search = "",
token = ""
)
# pins::board_register() # connect to pin board if needed
callModule(mod_home_server, "home_ui_1")
callModule(mod_ridl_connect_server, "ridl_connect_ui_1", AppReactiveValue)
callModule(mod_set_up_check_server, "set_up_check_ui_1", AppReactiveValue)
callModule(mod_set_up_clean_server, "set_up_clean_ui_1", AppReactiveValue)
callModule(mod_set_up_anom_server, "set_up_anom_ui_1", AppReactiveValue)
callModule(mod_review_server, "review_ui_1", AppReactiveValue)
callModule(mod_automatise_report_server, "automatise_report_ui_1", AppReactiveValue)
}