Browse Source

Allow API auth on GET /versions/:id (#10241).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8880 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.4.0
Jean-Philippe Lang 12 years ago
parent
commit
4cf6901057
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      app/controllers/versions_controller.rb

+ 1
- 1
app/controllers/versions_controller.rb View File

@@ -23,7 +23,7 @@ class VersionsController < ApplicationController
before_filter :find_project, :only => [:index, :new, :create, :close_completed]
before_filter :authorize

accept_api_auth :index, :create, :update, :destroy
accept_api_auth :index, :show, :create, :update, :destroy

helper :custom_fields
helper :projects

Loading…
Cancel
Save