Feature #14830
closedREST API : Add support for attaching file to Wiki pages
0%
Description
Currently (2.3.2) it is not possible (that I know of) to attach files to wiki pages.
AS a workaround i have attached all files to an arbitrary ticket instead which works but is pretty awkward.
It would be nice if it was possible to attach the file directly to the wikipage instead.
// Michael Medin
Files
Related issues
Updated by Thomas Godard about 11 years ago
It is possible to attach files to Wiki pages ... See : http://www.redmine.org/projects/redmine/wiki/RedmineProjects for example
Updated by Michael Medin about 11 years ago
Sorry, I forgot to mention I meant via the REST API.
Updated by Toshi MARUYAMA about 11 years ago
- Subject changed from Add support for attaching file to WIKI pages to Add support for attaching file to WIKI pages by REST API
- Category changed from Rails support to REST API
Updated by Sven S. about 9 years ago
Had the same problem here, the following patch make it working (I am not a ruby specialist, just took the snippet from the issue controller; normal upload and rest upload is then working):
Index: wiki_controller.rb
===================================================================
--- wiki_controller.rb (revision 14728)
+++ wiki_controller.rb (working copy)
@@ -152,7 +152,7 @@
@content.author = User.current
if @page.save_with_content(@content)
- attachments = Attachment.attach_files(@page, params[:attachments])
+ attachments = Attachment.attach_files(@page, params[:attachments] || (params[:wiki_page] && params[:wiki_page][:uploads]))
render_attachment_warning_if_needed(@page)
call_hook(:controller_wiki_edit_after_save, { :params => params, :page => @page})
Added this patch to the patch-queue #21066
Updated by Toshi MARUYAMA about 9 years ago
- Related to Patch #21066: Enable adding attachments to wiki entries using the Rest-API added
Updated by Go MAEDA almost 9 years ago
- Has duplicate Feature #13843: Redmine API: can wiki pages contain uploads added
Updated by Takenori TAKAKI over 8 years ago
- File add_rest_api_for_attaching_file_to_WIKI_page_trunk_r15317.patch add_rest_api_for_attaching_file_to_WIKI_page_trunk_r15317.patch added
I added a test-case for Sven S.'s patch.
This patch workes fine under the latest trunk r15317.
I would be happy if I could see the feature in Redmine 3.3.0.
Updated by Jean-Philippe Lang over 8 years ago
- Status changed from New to Closed
- Assignee set to Jean-Philippe Lang
- Resolution set to Fixed
Committed, thanks. I've removed the test with the 'attachment' param as it's not supposed to be used with the API. Attachments should be added through the API with wiki_page[uploads].
Updated by Jean-Philippe Lang over 8 years ago
- Subject changed from Add support for attaching file to WIKI pages by REST API to REST API : Add support for attaching file to Wiki pages
Updated by Vu Anh over 7 years ago
Michael Medin wrote:
Currently (2.3.2) it is not possible (that I know of) to attach files to wiki pages.
AS a workaround i have attached all files to an arbitrary ticket instead which works but is pretty awkward.It would be nice if it was possible to attach the file directly to the wikipage instead.
// Michael Medin
I'm realy not clear about this feature.@Michael, Lang Can you explain more about it. How can i replay it ? I'm using v.3.2.6
Updated by Toshi MARUYAMA over 7 years ago
Vu Anh wrote:
Michael Medin wrote:
Currently (2.3.2) it is not possible (that I know of) to attach files to wiki pages.
AS a workaround i have attached all files to an arbitrary ticket instead which works but is pretty awkward.It would be nice if it was possible to attach the file directly to the wikipage instead.
// Michael Medin
I'm realy not clear about this feature.@Michael, Lang Can you explain more about it. How can i replay it ? I'm using v.3.2.6
This feature is included in Redmine 3.3.