data-raw/credentials.R

## code to prepare `credentials` dataset goes here
credentials <- data.frame(
  user = c("user", "admin"), # mandatory
  password = c("user", "admin"), # mandatory
  start = c("2021-01-01"), # optinal (all others)
  expire = NA,
  admin = c(FALSE, TRUE),
  comment = NA,
  stringsAsFactors = FALSE
)
usethis::use_data(credentials, overwrite = TRUE)
ngsanogo/AFDapp documentation built on Dec. 22, 2021, 1:18 a.m.