Skip to content

Commit

Permalink
Merge pull request #121 from Rapporteket/consolidate
Browse files Browse the repository at this point in the history
Consolidate
  • Loading branch information
areedv authored Jun 3, 2022
2 parents 375681d + 094ad0d commit e292396
Show file tree
Hide file tree
Showing 113 changed files with 2,073 additions and 2,756 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/doc-consistency.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,5 @@ jobs:
run: |
git config --local user.email "actions@github.com"
git config --local user.name "GitHub Actions"
Rscript -e 'testthat::expect_warning(pkgdown::build_reference(preview = FALSE), regexp = NA)'
Rscript -e "pkgdown::init_site()"
Rscript -e "testthat::expect_warning(pkgdown::build_reference(preview = FALSE), regexp = NA)"
8 changes: 5 additions & 3 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,13 @@ jobs:

- name: Install dependencies
run: |
install.packages(c("remotes"))
install.packages(c("remotes", "devtools"))
remotes::install_deps(dependencies = TRUE)
remotes::install_cran("lintr")
shell: Rscript {0}

- name: Lint
run: lintr::lint_package()
shell: Rscript {0}
run: |
devtools::load_all()
lintr::lint_package()
shell: Rscript {0}
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Imports:
kableExtra,
knitr,
magrittr,
purrr,
openssl,
readr,
remotes,
rlang,
Expand Down
14 changes: 1 addition & 13 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ export("%>%")
export(.data)
export(.getFun)
export(.testAutoReport)
export(LoadRegData)
export(appLogger)
export(appNavbarUserWidget)
export(autLogger)
Expand Down Expand Up @@ -35,10 +34,6 @@ export(getConfig)
export(getGithub)
export(getRapPackages)
export(getRegs)
export(getShinyUserGroups)
export(getShinyUserName)
export(getShinyUserReshId)
export(getShinyUserRole)
export(getUserEmail)
export(getUserFullName)
export(getUserGroups)
Expand All @@ -57,16 +52,14 @@ export(logFormat)
export(logTimeFrame)
export(makeAutoReportTab)
export(makeRunDayOfYearSequence)
export(makeUserSubscriptionTab)
export(makeUserSubscriptionTabV2)
export(makeUserSubscriptionTab_v2)
export(mst)
export(mtimeStagingData)
export(navbarWidgetApp)
export(navbarWidgetInput)
export(navbarWidgetServer)
export(noOptOutOk)
export(orgList2df)
export(pubkey_filter)
export(rapCloseDbConnection)
export(rapOpenDbConnection)
export(readAutoReportData)
Expand All @@ -77,13 +70,8 @@ export(runBulletin)
export(runNoweb)
export(runShinyApp)
export(saveStagingData)
export(selectByOrganization)
export(selectByOwner)
export(selectByReg)
export(selectByType)
export(selectListPubkey)
export(sendEmail)
export(shinySessionInfo)
export(statsApp)
export(statsGuideApp)
export(statsGuideServer)
Expand Down
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# rapbase 1.23.0

* Added database as an optional log backend and function for (scheduled) clean of logs ([#112](https://github.com/Rapporteket/rapbase/pull/112))
* For logging to a database backend format set to json ([#120](https://github.com/Rapporteket/rapbase/pull/120))
* Reorganized and consolidated R files, removed deprecated and unused function and applied minor fixes to function flaws ([#121](https://github.com/Rapporteket/rapbase/pull/121))

# rapbase 1.22.0

* Improved first page graphics and hyperlinking in default latex template ([#104](https://github.com/Rapporteket/rapbase/pull/104))
Expand Down
Loading

0 comments on commit e292396

Please sign in to comment.