設定[edit]

configuration.yml[edit]

settings.yml[edit]

database.yml[edit]

additional_environment.rb.example[edit]

application.rb[edit]

boot.rb[edit]

environment.rb[edit]

routes.rb[edit]

environments[edit]

development.rb production.rb test.rb test_pgsql.rb test_sqlite3.rb

initializers[edit]

locales/*.rb[edit]

カスタマイズ[edit]

app/helpers/issues_helper.rb[edit]

メール通知に表示されるフィールド

標準フィールド

    %w(author status priority assigned_to category fixed_version start_date due_date).each do |attribute|

カスタムフィールド

    issue.visible_custom_field_values(user).each do |value|
      cf_value = show_value(value, false)
      next if cf_value.blank?

      if html
        items << content_tag('strong', "#{value.custom_field.name}: ") + cf_value
      else
        items << "#{value.custom_field.name}: #{cf_value}"
      end
    end

トップ   編集 凍結 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: 2023-03-03 (金) 21:46:45