missed loading REDCapCAST library or reference function in ui.R - bummer

This commit is contained in:
Andreas Gammelgaard Damsbo 2024-11-25 09:13:10 +01:00
parent 90f0a9d382
commit bae5b6d2ec
No known key found for this signature in database
4 changed files with 14 additions and 2 deletions

View File

@ -0,0 +1,10 @@
name: redcapcast-latest
title:
username: agdamsbo
account: agdamsbo
server: shinyapps.io
hostUrl: https://api.shinyapps.io/v1
appId: 13441620
bundleId: 9412096
url: https://agdamsbo.shinyapps.io/redcapcast-latest/
version: 1

View File

@ -5,6 +5,6 @@ account: agdamsbo
server: shinyapps.io server: shinyapps.io
hostUrl: https://api.shinyapps.io/v1 hostUrl: https://api.shinyapps.io/v1
appId: 11351429 appId: 11351429
bundleId: 9402312 bundleId: 9412139
url: https://agdamsbo.shinyapps.io/redcapcast/ url: https://agdamsbo.shinyapps.io/redcapcast/
version: 1 version: 1

View File

@ -8,6 +8,7 @@ library(dplyr)
library(devtools) library(devtools)
if (!requireNamespace("REDCapCAST")) { if (!requireNamespace("REDCapCAST")) {
devtools::install_github("agdamsbo/REDCapCAST", quiet = TRUE, upgrade = "never") devtools::install_github("agdamsbo/REDCapCAST", quiet = TRUE, upgrade = "never")
# install.packages("REDCapCAST")
} }
library(REDCapCAST) library(REDCapCAST)

View File

@ -1,6 +1,7 @@
library(REDCapCAST)
ui <- ui <-
bslib::page( bslib::page(
theme = bslib::bs_theme(preset = "united"), theme = bslib::bs_theme(preset = "united"),
title = "REDCap database creator", title = "REDCap database creator",
nav_bar_page() REDCapCAST::nav_bar_page()
) )