We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e35604f commit 31374deCopy full SHA for 31374de
confluence.R
@@ -201,6 +201,12 @@ bodies <- {
201
filter(! is.na(content.CustomContentEntityObject)) %>%
202
filter(type != "CustomContentEntityObject") %>%
203
nrow == 0)
204
+ ## Page-like bodies should have a match in page_versions:
205
+ stopifnot(bodies %>%
206
+ filter(! is.na(content.Page)) %>%
207
+ anti_join(page_versions,
208
+ by = join_by(content.Page == content_id)) %>%
209
+ nrow == 0)
210
bodies
211
}
212
0 commit comments