summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2018-09-24 05:31:13 +0000
committerGo MAEDA <maeda@farend.jp>2018-09-24 05:31:13 +0000
commitc76c0900bb49973fea7f1a5f1cecd16aadb16b6b (patch)
treee5a7637ddf8d056ed8f5278dd3a2a1293e3324c5 /app
parent5282a45b9b8eb39a25416cf270ca423db485a976 (diff)
downloadredmine-c76c0900bb49973fea7f1a5f1cecd16aadb16b6b.tar.gz
redmine-c76c0900bb49973fea7f1a5f1cecd16aadb16b6b.zip
Use the id field as project_key in ProjectCustomField#visibility_by_project_condition by default (#29161).
Patch by Holger Just. git-svn-id: http://svn.redmine.org/redmine/trunk@17517 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r--app/models/project_custom_field.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/models/project_custom_field.rb b/app/models/project_custom_field.rb
index 54e7958a3..e038313f8 100644
--- a/app/models/project_custom_field.rb
+++ b/app/models/project_custom_field.rb
@@ -19,4 +19,9 @@ class ProjectCustomField < CustomField
def type_name
:label_project_plural
end
+
+ def visibility_by_project_condition(project_key=nil, user=User.current, id_column=nil)
+ project_key ||= "#{Project.table_name}.id"
+ super(project_key, user, id_column)
+ end
end