Project

General

Profile

Actions

Feature #22008

closed

Associated Revision API

Added by anish kumar about 8 years ago. Updated about 3 years ago.

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

0%

Estimated time:
Resolution:
Fixed

Description

Hi I need to check the commit details for specific issue, where we check these through Associated revision is it possible to do it through api


Files

22008-add-api.patch (7.26 KB) 22008-add-api.patch Yuichi HARADA, 2020-02-12 06:09

Related issues

Related to Redmine - Feature #35771: Document 'Repositories Management API' and 'Revisions Add/Delete Related Issues API'New

Actions
Actions #1

Updated by Yuichi HARADA about 4 years ago

Created an API to add/remove related issues to the revision. I attached a patch.

diff --git a/app/controllers/repositories_controller.rb b/app/controllers/repositories_controller.rb
index 269bc70a0..92a145c3a 100644
--- a/app/controllers/repositories_controller.rb
+++ b/app/controllers/repositories_controller.rb
@@ -35,6 +35,7 @@ class RepositoriesController < ApplicationController
   before_action :find_changeset, :only => [:revision, :add_related_issue, :remove_related_issue]
   before_action :authorize
   accept_rss_auth :revisions
+  accept_api_auth :add_related_issue, :remove_related_issue

   rescue_from Redmine::Scm::Adapters::CommandFailed, :with => :show_error_command_failed

@@ -227,8 +228,14 @@ class RepositoriesController < ApplicationController
       @issue = nil
     end

-    if @issue
-      @changeset.issues << @issue
+    respond_to do |format|
+      if @issue
+        @changeset.issues << @issue
+        format.api { render_api_ok }
+      else
+        format.api { render_api_errors "#{l(:label_issue)} #{l('activerecord.errors.messages.invalid')}" }
+      end
+      format.js
     end
   end

@@ -239,6 +246,10 @@ class RepositoriesController < ApplicationController
     if @issue
       @changeset.issues.delete(@issue)
     end
+    respond_to do |format|
+      format.api { render_api_ok }
+      format.js
+    end
   end

   def diff
Actions #2

Updated by Go MAEDA about 4 years ago

  • Priority changed from High to Normal
  • Target version set to Candidate for next major release
Actions #3

Updated by Go MAEDA about 4 years ago

The Ruby team also needs this feature. Thay applies a similar patch to https://bugs.ruby-lang.org/. See their repository for details.

Actions #4

Updated by Go MAEDA about 4 years ago

  • Target version changed from Candidate for next major release to 4.2.0

Setting the target version to 4.2.0.

Actions #5

Updated by Go MAEDA about 3 years ago

  • Status changed from New to Closed
  • Assignee set to Go MAEDA
  • Resolution set to Fixed

Committed the patch. Thank you for your contribution.

Actions #6

Updated by Mischa The Evil over 2 years ago

  • Related to Feature #35771: Document 'Repositories Management API' and 'Revisions Add/Delete Related Issues API' added
Actions

Also available in: Atom PDF