]> source.dussan.org Git - redmine.git/commitdiff
Deprecates Project#set_allowed_parent!.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Wed, 7 Jan 2015 22:33:25 +0000 (22:33 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Wed, 7 Jan 2015 22:33:25 +0000 (22:33 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@13849 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/project.rb

index deb497484eeaa8c737f64a86c8b4c76ed14d0b5c..fa035b02296a050ae519b642467fc71d5d69a401 100644 (file)
@@ -383,12 +383,13 @@ class Project < ActiveRecord::Base
 
   # Sets the parent of the project with authorization check
   def set_allowed_parent!(p)
+    ActiveSupport::Deprecation.warn "Project#set_allowed_parent! is deprecated and will be removed in Redmine 4, use #safe_attributes= instead."
     p = p.id if p.is_a?(Project)
     send :safe_attributes, {:project_id => p}
     save
   end
 
-  # Sets the parent of the project
+  # Sets the parent of the project and saves the project
   # Argument can be either a Project, a String, a Fixnum or nil
   def set_parent!(p)
     if p.is_a?(Project)