Skip to content

Commit

Permalink
Merge pull request #609 from pharmaR/ac-prep-200
Browse files Browse the repository at this point in the history
Remove developer credentials for release
  • Loading branch information
Robert-Krajcik authored Aug 11, 2023
2 parents 298a716 + 4ab1542 commit def8380
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 24 deletions.
4 changes: 3 additions & 1 deletion R/global.R
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ utils::globalVariables(
'user_role',
'old_role',
'new_role',
'role'
'role',
'Package',
'Actions'
)
)

Expand Down
21 changes: 0 additions & 21 deletions R/run_app.R
Original file line number Diff line number Diff line change
Expand Up @@ -43,25 +43,6 @@ run_app <- function(
}
}

# Note that this overrides other credential set up
login_creds <- NULL
pre_auth_user <- NULL
if (isFALSE(getOption("golem.app.prod"))) {
arg_lst <- as.list(match.call())

login_creds <- list(user_id = "",
user_pwd = "cxk1QEMYSpYcrNB")
if (!is.null(arg_lst$pre_auth_user)) {
pre_auth_user <- arg_lst$pre_auth_user
if (isTRUE(pre_auth_user) || pre_auth_user == "admin") {
login_creds$user_id <- "admin"
} else {
login_creds$user_id <- pre_auth_user
}
credentials_db_name <- gsub("\\.sqlite", "_dev\\.sqlite", credentials_db_name)
}
}

# Run the app
with_golem_options(
app = shinyApp(
Expand All @@ -75,8 +56,6 @@ run_app <- function(
golem_opts = list(app_version = app_ver,
credentials_db_name = credentials_db_name,
assessment_db_name = assessment_db_name,
pre_auth_user = pre_auth_user,
login_creds = login_creds,
decision_categories = decision_categories,
...)
)
Expand Down
2 changes: 0 additions & 2 deletions R/utils_startup.R
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,6 @@ initialize_raa <- function(assess_db, cred_db, decision_cat) {

check_credentials(db_config[["credentials"]])

if (isFALSE(getOption("golem.app.prod")) && !is.null(golem::get_golem_options('pre_auth_user')) && !file.exists(credentials_db)) create_credentials_dev_db(credentials_db)

# Create package db & credentials db if it doesn't exist yet.
if(!file.exists(assessment_db)) create_db(assessment_db)
if(!file.exists(credentials_db)) {
Expand Down

0 comments on commit def8380

Please sign in to comment.