#' jira_resolved
#'
#' A function for pulling only resolved issues (including Descoped)
#' @param df The data-frame created by running \code{\link{jira_issues}}
#' @seealso \code{\link{jira_issues}} which pulls the underlying data set
#' @export
jira_resolved <- function(df) {
#filter only to resolved tickets
newdf <- df %>%
filter(issue_status_category == 'Done')
return(newdf)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.