Skip to content

Commit

Permalink
Return the generated filetoken from request_file_analysis (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasPietzschmann authored Oct 1, 2024
1 parent 6da7730 commit 5beb926
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion R/file_analysis.R
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,8 @@ request_file_analysis <- function(con,
cfg = cfg
)
}
return(send_request_handle_response(con, request))
return(c(
send_request_handle_response(con, request),
list(filetoken = filetoken)
))
}

0 comments on commit 5beb926

Please sign in to comment.