From 33afc826224f336b3fe4a97f462e410957397b21 Mon Sep 17 00:00:00 2001 From: as-op Date: Wed, 5 Jun 2024 17:51:35 +0200 Subject: [PATCH] list more examples in comment --- .../work_package/exports/macros/attributes.rb | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/app/models/work_package/exports/macros/attributes.rb b/app/models/work_package/exports/macros/attributes.rb index 4885c9ad355d..8b50adfa503e 100644 --- a/app/models/work_package/exports/macros/attributes.rb +++ b/app/models/work_package/exports/macros/attributes.rb @@ -29,11 +29,21 @@ module WorkPackage::Exports module Macros # OpenProject attribute macros syntax # Examples: - # workPackageLabel:1234:subject # Outputs work package label attribute "Subject" + help text - # workPackageValue:1234:subject # Outputs the actual subject of #1234 + # workPackageLabel:subject # Outputs work package label attribute "Subject" + # workPackageLabel:1234:subject # Outputs work package label attribute "Subject" + + # workPackageValue:subject # Outputs the subject of the current work package + # workPackageValue:1234:subject # Outputs the subject of #1234 + # workPackageValue:"custom field name" # Outputs the custom field value of the current work package + # workPackageValue:1234:"custom field name" # Outputs the custom field value of #1234 # - # projectLabel:statusExplanation # Outputs current project label attribute "Status description" + help text - # projectValue:statusExplanation # Outputs current project value for "Status description" + # projectLabel:active # Outputs current project label attribute "active" + # projectLabel:1234:active # Outputs project label attribute "active" + # projectLabel:my-project-identifier:active # Outputs project label attribute "active" + + # projectValue:active # Outputs current project value for "active" + # projectValue:1234:active # Outputs project with id 1234 value for "active" + # projectValue:my-project-identifier:active # Outputs project with identifier my-project-identifier value for "active" class Attributes < OpenProject::TextFormatting::Matchers::RegexMatcher DISABLED_PROJECT_RICH_TEXT_FIELDS = %i[description status_explanation status_description].freeze DISABLED_WORK_PACKAGE_RICH_TEXT_FIELDS = %i[description].freeze