Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# redcapAPI (development version)

* `exportDags`, `exportFieldNames`, `exportProjectInformation`, `exportReportsTyped`, `importDags`, `writeDataForImport`, and `exportRecordsTYped` now have a `csv_delimiter` parameter to control delimiter utilized.
* `exportDags`, `exportFieldNames`, `exportProjectInformation`, `exportReportsTyped`, `importDags`, `writeDataForImport`, and `exportRecordsTyped` now have a `csv_delimiter` parameter to control delimiter utilized.
* `importMetaData` bug fix when given duplicate names to exit and warn user properly.
* `redcapUserRoleStructure` allows new `alerts`, `api_modules`, and `data_quality_resolution` attributes.

## DEPRECATION NOTICES

Expand Down
3 changes: 3 additions & 0 deletions R/redcapDataStructure.R
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,7 @@ redcapUserRoleStructure <- function(version)
data.frame(unique_role_name = character(0),
role_label = character(0),
design = character(0),
alerts = character(0),
user_rights = character(0),
data_access_groups = character(0),
# data_export = character(0),
Expand All @@ -415,8 +416,10 @@ redcapUserRoleStructure <- function(version)
file_repository = character(0),
data_quality_create = character(0),
data_quality_execute = character(0),
data_quality_resolution = character(0),
api_export = character(0),
api_import = character(0),
api_modules = if(is.null(version) || utils::compareVersion(version, "14.0.3") < 0) NULL else character(0),
mobile_app = character(0),
mobile_app_download_data = character(0),
record_create = character(0),
Expand Down