Skip to content

Commit 6a358b4

Browse files
committed
Add cross-refs to related functions
1 parent e49134d commit 6a358b4

30 files changed

Lines changed: 169 additions & 2 deletions

R/assets.R

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
#'
2121
#' @return A tibble
2222
#'
23+
#' @family Asset functions
24+
#'
2325
#' @export
2426

2527
assets <- function(workspace_uuid,
@@ -75,6 +77,8 @@ assets <- function(workspace_uuid,
7577
#'
7678
#' @return A tibble
7779
#'
80+
#' @family Asset functions
81+
#'
7882
#' @export
7983

8084
asset_info <- function(asset_uuid,
@@ -108,6 +112,8 @@ asset_info <- function(asset_uuid,
108112
#'
109113
#' @return API response (invisibly)
110114
#'
115+
#' @family Asset functions
116+
#'
111117
#' @export
112118

113119
delete_asset <- function(asset_uuid,
@@ -144,6 +150,8 @@ delete_asset <- function(asset_uuid,
144150
#'
145151
#' @return API response (invisibly)
146152
#'
153+
#' @family Asset functions
154+
#'
147155
#' @export
148156

149157
rename_asset <- function(asset_uuid,

R/bypass_2fa.R

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
#'
1717
#' @return API response (invisibly)
1818
#'
19+
#' @family Two-factor authentication functions
20+
#'
1921
#' @export
2022

2123
workgroup_bypass_2fa <- function(workgroup_uuid,
@@ -63,6 +65,8 @@ workgroup_bypass_2fa <- function(workgroup_uuid,
6365
#'
6466
#' @return API response (invisibly)
6567
#'
68+
#' @family Two-factor authentication functions
69+
#'
6670
#' @export
6771

6872
participant_bypass_2fa <- function(participant_uuid,
@@ -106,6 +110,8 @@ participant_bypass_2fa <- function(participant_uuid,
106110
#'
107111
#' @return API response (invisibly)
108112
#'
113+
#' @family Two-factor authentication functions
114+
#'
109115
#' @export
110116

111117
workgroup_mandate_2fa <- function(workgroup_uuid,

R/comments.R

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
#' comments()
2222
#' }
2323
#'
24+
#' @family Comment functions
25+
#'
2426
#' @export
2527

2628
comments <- function(created_after = NULL,
@@ -78,6 +80,8 @@ comments <- function(created_after = NULL,
7880
#'
7981
#' @return API response (invisibly)
8082
#'
83+
#' @family Comment functions
84+
#'
8185
#' @export
8286

8387
new_thread <- function(workspace_uuid,
@@ -121,6 +125,7 @@ new_thread <- function(workspace_uuid,
121125
#'
122126
#' @return API response (invisibly)
123127
#'
128+
#' @family Comment functions
124129
#' @export
125130

126131
new_reply <- function(thread_uuid,

R/create_folder.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
#'
1717
#' @return API response (invisibly)
1818
#'
19+
#' @family Asset functions
20+
#'
1921
#' @export
2022

2123
create_folder <- function(folder_name,

R/download.R

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ download_helper <- function(document_uuid,
8484
#'
8585
#' @return Path to downloaded file (invisibly).
8686
#'
87+
#' @family Read/write functions
88+
#'
8789
#' @export
8890

8991
download_file <- function(document_uuid,
@@ -166,6 +168,8 @@ download_file_version <- function(document_uuid,
166168
#'
167169
#' @return A [tibble][tibble::tibble-package].
168170
#'
171+
#' @family Read/write functions
172+
#'
169173
#' @export
170174

171175
read_data <- function(document_uuid,

R/mobile_auth.R

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
#' * `mobileAuthLogin`: Has the user enabled login via Mobile Authenticator?
1616
#' * `mobileAuthRegistered`: Has the user registered a Mobile Authenticator?
1717
#'
18+
#' @family Mobile authentication functions
19+
#'
1820
#' @export
1921

2022
mobile_auth_status <- function(use_proxy = FALSE) {
@@ -49,6 +51,8 @@ mobile_auth_status <- function(use_proxy = FALSE) {
4951
#'
5052
#' @return API response (invisibly)
5153
#'
54+
#' @family Mobile authentication functions
55+
#'
5256
#' @export
5357

5458
mobile_auth_login <- function(code = NULL, use_proxy = FALSE) {

R/participants.R

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
#'
1212
#' @return A tibble
1313
#'
14+
#' @seealso [add_participants()]
15+
#'
1416
#' @export
1517

1618
participants <- function(workspace_uuid, use_proxy = FALSE) {
@@ -86,6 +88,8 @@ participants <- function(workspace_uuid, use_proxy = FALSE) {
8688
#'
8789
#' @return API response (invisibly)
8890
#'
91+
#' @seealso [participants()]
92+
#'
8993
#' @export
9094

9195
add_participants <- function(workspace_uuid,

R/upload.R

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
#'
2727
#' @return API response (invisibly)
2828
#'
29+
#' @family Read/write functions
30+
#'
2931
#' @export
3032

3133
upload_file <- function(file,
@@ -150,6 +152,8 @@ upload_file_version <- function(file,
150152
#'
151153
#' @return API response (invisibly)
152154
#'
155+
#' @family Read/write functions
156+
#'
153157
#' @export
154158

155159
write_data <- function(x,

R/documents.R renamed to R/versions.R

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
#'
1313
#' @return A tibble
1414
#'
15+
#' @seealso [rollback_to_version()]
16+
#'
1517
#' @export
1618

1719
versions <- function(document_uuid,
@@ -63,6 +65,8 @@ versions <- function(document_uuid,
6365
#'
6466
#' @return API response (invisibly)
6567
#'
68+
#' @seealso [versions()]
69+
#'
6670
#' @export
6771

6872
rollback_to_version <- function(document_uuid,

man/add_participants.Rd

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)