Skip to content

Commit

Permalink
Merge pull request #16 from RevanthNemani/master
Browse files Browse the repository at this point in the history
Update README.md on user base creation
  • Loading branch information
PaulC91 committed Apr 30, 2019
2 parents ae04585 + c146436 commit 6830f43
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ user_base <- data.frame(
password = c("pass1", "pass2"),
permissions = c("admin", "standard"),
name = c("User One", "User Two"),
stringsAsFactors = FALSE
stringsAsFactors = FALSE,
row.names = NULL
)

ui <- fluidPage(
Expand Down Expand Up @@ -104,7 +105,8 @@ user_base <- data.frame(
password = sapply(c("pass1", "pass2"), sodium::password_store),
permissions = c("admin", "standard"),
name = c("User One", "User Two"),
stringsAsFactors = FALSE
stringsAsFactors = FALSE,
row.names = NULL
)

saveRDS(user_base, "user_base.rds")
Expand Down

0 comments on commit 6830f43

Please sign in to comment.