StatisMike
StatisMike
Safe to pull now, fixed all conflicts and devel up to date
Very subjective, but the only time I've seen this is error is when somebody tried to do in reality `geom_density2d`. You know, the density of x and y planes. But...
The same problem seems to be happening in [shiny.reglog](https://github.com/statismike/shiny.reglog). Tests are written using `shinytest2` package. Coverage seems to be inconsistent. Until I introduced additional test file `test-mongo_app.R` everything seemed fine....
@jimhester Do you happen to know how to read trace files retained with `covr::package_coverage(quiet = FALSE, clean = FALSE)`
@aephidayatuloh I am currently creating an app tree similiar to yours. I'm using syntax similiar to yours and everything seems to be working fine. The problem seems to be that...
@aephidayatuloh I'm sorry I weren't clearer. In the present version of `shinymanager` there is no "main app". All apps are fully equivalent, and the directory structure should be too. I...
``` inputs_list = list( name_of_new_variable = list( fun = "name of input type for choosing its value", args = list( #list containing arguments for this input type ) ) )...
By default the extra columns can be edited in Shiny using `textInput`. The `inputs_list` argument let you define other input methods for editing/assigning this variable, as shown in example cited...
There are several problems with your implementation. 1. `inputs_list` is argument in `secure_server`. You cannot input list into data.frame! 2. To get access to admin mode, you need to create...
> Following your documentation, it is a parameter in `secure_server`, not in `secure_app`. You've got me! I'm editing it above, thanks for correction. > Your example does not show what...