-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use file.path for update_wpage #49
base: master
Are you sure you want to change the base?
Conversation
As I'm using the package more it seems that this issue comes up everywhere |
@vnijs Are you interested in becoming a maintainer of this package? rcanvas is no longer relevant to my work, so I've been looking for additional maintainers...and perhaps the repository should live in a different location as well... We have a few collaborators at present, but I'd be more than willing to toss you the keys as well. |
@daranzolin I'd be happy to be one of the maintainers since I expect we will be using the package a fair amount in the future. Not really ready for more responsibility than that however since I already maintain several packages on CRAN :) FYI I'm building a demo canvas site for our faculty now so it seems plausible that I'll add a few more things to this PR in the next week or so. Is that ok? |
@vnijs that's fine with me! @bbbruce and @vanatteveldt have been an awesome help, but the package likely needs a longerish term solution. Sent you an invite. |
@vnijs Thanks for pointing out the |
paste0 => file.path for comment_submission
This worked well for me when I encountered a similar issue with get_submission_single(). It also fixes the issue of @drmankin (#50 (comment)) |
|
Wonderful package! I use Rmarkdown to create my syllabus and can now use
update_wpage
to put all the pages up on canvas. Really nice!I found a (very) minor issue with
update_wpage
however.canvas_url()
returnshttps://my-canvas-site/api/v1
so theurl
becomes something likehttps://my-canvas-site/api/v1courses/123/pages/my-page
. Note the missing/
betweenv1
andcourses
. Usingfile.path
would fix this.