Project

General

Profile

Actions

Feature #14830

closed

REST API : Add support for attaching file to Wiki pages

Added by Michael Medin over 10 years ago. Updated almost 7 years ago.

Status:
Closed
Priority:
Normal
Category:
REST API
Target version:
Start date:
Due date:
% Done:

0%

Estimated time:
Resolution:
Fixed

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

Related to Redmine - Patch #21066: Enable adding attachments to wiki entries using the Rest-APIClosed

Actions
Has duplicate Redmine - Feature #13843: Redmine API: can wiki pages contain uploadsClosed

Actions
Actions #1

Updated by Thomas Godard over 10 years ago

It is possible to attach files to Wiki pages ... See : http://www.redmine.org/projects/redmine/wiki/RedmineProjects for example

Actions #2

Updated by Michael Medin over 10 years ago

Sorry, I forgot to mention I meant via the REST API.

Actions #3

Updated by Toshi MARUYAMA over 10 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
Actions #4

Updated by Sven S. over 8 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

Actions #5

Updated by Toshi MARUYAMA over 8 years ago

  • Related to Patch #21066: Enable adding attachments to wiki entries using the Rest-API added
Actions #6

Updated by Go MAEDA about 8 years ago

  • Has duplicate Feature #13843: Redmine API: can wiki pages contain uploads added
Actions #7

Updated by Takenori TAKAKI almost 8 years ago

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.

Actions #8

Updated by Toshi MARUYAMA almost 8 years ago

  • Target version set to 3.3.0
Actions #9

Updated by Jean-Philippe Lang almost 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].

Actions #10

Updated by Jean-Philippe Lang almost 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
Actions #11

Updated by Vu Anh almost 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

Actions #12

Updated by Toshi MARUYAMA almost 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.

Actions

Also available in: Atom PDF