【mantis BT】納期(期限、due_date)を使えるようにする
問題
バグトラッカー mantis BT には、納期って項目ないの?
答え
ある。
納期は勝手に変更されては困ると考えてか、設定が必要となっている。
config_defaults_inc.php を編集するか、config_inc.php に書いて、デフォルトの値を上書きする。
・config_defaults_inc.php
/************ * Due Date * ************/ /** * threshold to update due date submitted * @global int $g_due_date_update_threshold */ $g_due_date_update_threshold = NOBODY; /** * threshold to see due date * @global int $g_due_date_view_threshold */ $g_due_date_view_threshold = NOBODY;
・変更後
$g_due_date_update_threshold = ANYBODY; //管理者だけが編集可能にするならMANAGER、ADMINISTRATORなどに $g_due_date_view_threshold = ANYBODY;
「検索」の結果等にも表示させるには、「システム設定→設定管理→表示項目管理」で「表示項目」にdue_dateを追加する。
コメント