-
Notifications
You must be signed in to change notification settings - Fork 0
/
extra_vars.yml
1529 lines (1497 loc) · 47.3 KB
/
extra_vars.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
## -----------------
## Redmineデモ環境の各種ディレクトリ
## -----------------
redmine_data_dir: "/vagrant/redmine_tokyo_22"
## ---------------
## Gemfile.localに記載する内容
## ---------------
redmine_gemfile_local_content: |
source 'https://rubygems.org'
gem 'puma'
## ---------------
## Redmineのバージョン
## ---------------
# redmine_version: "4.2-stable"
# --------------------
# Redmineの設定(システム管理者)
# --------------------
redmine_admin:
login: admin
firstname: 管理者
lastname: システム
mail: [email protected]
language: ja
password: redmineadmin
must_change_passwd: false
## -----------------
## Redmuneの動作設定
## -----------------
redmine_cfg:
default:
sudo_mode: true
sudo_timeout: 15
# --------------------
# インストールするテーマ
# --------------------
redmine_themes:
- name: PurpleMine2
repo: https://github.com/mrliptontea/PurpleMine2.git
- name: farend_fancy
repo: "https://github.com/farend/redmine_theme_farend_fancy.git"
- name: farend_basic
repo: "https://github.com/farend/redmine_theme_farend_basic.git"
# --------------------
# インストールするプラグイン
# --------------------
redmine_plugins:
## -------
## 定番
## -------
- name: issue_templates
repo: "https://github.com/agileware-jp/redmine_issue_templates.git"
- name: view_customize
repo: "https://github.com/onozaty/redmine-view-customize.git"
directory: view_customize
- name: message_customize
repo: "https://github.com/ishikawa999/redmine_message_customize.git"
# post_install_action: |
# ln -sf {{ redmine_home }}/plugins/redmine_message_customize/35_change_load_order_locales.rb {{ redmine_home }}/config/initializers/35_change_load_order_locales.rb
- name: default_custom_query
repo: https://github.com/hidakatsuya/redmine_default_custom_query.git
## -------
## プロジェクト
## -------
- name: copy_project
repo: https://github.com/wate/redmine_copy_project.git
## -------
## チケットトラッキング
## -------
- name: issues_panel
repo: https://github.com/redmica/redmine_issues_panel.git
- name: issues_tree
repo: https://github.com/Loriowar/redmine_issues_tree.git
version: "4.1.x"
- name: checklists
file: "{{ redmine_data_dir }}/redmine_checklists-3_1_21-light.zip"
## -------
## ガントチャート
## -------
- name: easy_gantt
file: "{{ redmine_data_dir }}/EasyGanttFree/EasyGanttFree-4.x.zip"
## -------
## チャット連携
## -------
- name: slack
repo: https://github.com/cat-in-136/redmine-slack.git
version: evolved
# - name: messenger
# repo: https://github.com/AlphaNodes/redmine_messenger.git
# version: main
## -------
## Wiki
## -------
- name: drawio
repo: https://github.com/mikitex70/redmine_drawio.git
## -------
## 時間管理
## -------
- name: toggl2redmine
repo: https://github.com/jigarius/toggl2redmine.git
directory: toggl2redmine
version: "4.x"
## -------
## ファイル
## -------
- name: dmsf
repo: https://github.com/danmunn/redmine_dmsf.git
# version: 'v2.4.7'
required_packages:
# CGI search interface and indexers using Xapian
- xapian-omega
# Xapian 検索エンジンライブラリ用開発ファイル
- libxapian-dev
# Xapian search engine interface for Ruby
- ruby-xapian
# Converts MS Word files to text, PS, PDF and XML
- antiword
# text extractor for MS-Office files
- catdoc
# PDF 向けユーティリティ
- poppler-utils
# Universally Unique Identifier Command-Line Tool
- uuid
## -------
## ユーティリティ
## -------
- name: ui_extension
repo: https://github.com/redmica/redmica_ui_extension.git
directory: redmica_ui_extension
- name: webhook
repo: https://github.com/suer/redmine_webhook.git
- name: theme_changer
repo: https://github.com/haru/redmine_theme_changer.git
version: "0.4.0"
- name: absolute_dates
repo: https://github.com/suer/redmine_absolute_dates.git
- name: additionals
repo: https://github.com/AlphaNodes/additionals.git
directory: additionals
version: stable
- name: sudo
repo: https://github.com/AlphaNodes/redmine_sudo.git
version: stable
- name: full_text_search
repo: https://github.com/clear-code/redmine_full_text_search.git
directory: full_text_search
# --------------------
# Redmineの設定(トラッカー)
# --------------------
redmine_trackers:
- name: タスク
id: 2
description: 対応することが決まったチケットです。
position: 1
- name: 不具合
id: 1
description: 不具合が発生したことを表すチケットです。
position: 2
- name: 運用保守
id: 3
description:
position: 3
- name: 要望
description: 対応することが決まっていないチケットです。
position: 4
copy_workflow_from: タスク
- name: 問い合わせ
description: 問い合わせのチケットです。
position: 5
core_fields:
- assigned_to_id
- category_id
- description
- due_date
copy_workflow_from: タスク
# --------------------
# Redmineの設定(チケットのステータス)
# --------------------
redmine_issue_statuses:
- name: 未対応
id: 1
is_closed: false
position: 1
- name: 対応中
id: 2
is_closed: false
position: 2
- name: 対応済み
id: 3
is_closed: false
position: 3
- name: 確認待ち
position: 4
- name: フィードバック
id: 4
is_closed: false
position: 5
- name: 保留
is_closed: false
position: 6
- name: 経過観察
is_closed: false
position: 7
- name: 完了
id: 5
is_closed: true
position: 8
- name: 破棄
id: 6
is_closed: true
position: 9
# --------------------
# Redmineの設定(ユーザー)
# --------------------
redmine_users:
- login: automation_bot
firstname: ロボット
lastname: 自動処理
mail: [email protected]
password: automation_bot_password_not_found
mail_notification: none
system_admin: true
locked: true
custom_fields:
- name: 自己紹介
value: |
自動実行処理用のアカウントです。
このアカウントはロックされており通常は利用できません。
- login: authority_check_admin
firstname: 管理者
lastname: 権限チェック
mail: [email protected]
password: authority_check_admin
mail_notification: none
system_admin: false
custom_fields:
- name: 自己紹介
value: このユーザーは権限チェック完了後にロックしてください
- login: authority_check_developer
firstname: 開発者
lastname: 権限チェック
mail: [email protected]
password: authority_check_developer
mail_notification: none
system_admin: false
custom_fields:
- name: 自己紹介
value: このユーザーは権限チェック完了後にロックしてください
- login: authority_check_repoter
firstname: 報告者
lastname: 権限チェック
mail: [email protected]
password: authority_check_repoter
mail_notification: none
system_admin: false
custom_fields:
- name: 自己紹介
value: このユーザーは権限チェック完了後にロックしてください
- login: authority_check_guest
firstname: ゲスト
lastname: 権限チェック
mail: [email protected]
password: authority_check_guest
mail_notification: none
system_admin: false
custom_fields:
- name: 自己紹介
value: このユーザーは権限チェック完了後にロックしてください
- login: anonymous_customer
firstname: 様
lastname: お客
mail: [email protected]
password: anonymous_customer_password
mail_notification: none
system_admin: false
custom_fields:
- name: 自己紹介
value: 任意のお客様を表すユーザーです
# --------------------
# Redmineの設定(グループ)
# --------------------
redmine_groups:
- name: 権限チェック用ユーザー
users:
- authority_check_admin
- authority_check_developer
- authority_check_repoter
- authority_check_guest
# --------------------
# Redmineの設定(ロール)
# --------------------
redmine_roles:
- name: 管理者
id: 3
append_permissions:
### プロジェクト
- copy_project
### 文書
- add_documents
- edit_documents
- delete_documents
## Easy Gantt
- view_easy_gantt
- edit_easy_gantt
## チェックリスト
- view_checklists
- done_checklists
- edit_checklists
## チケットテンプレート
- edit_issue_templates
- show_issue_templates
- manage_issue_templates
## additionals
- log_time_on_closed_issues
## デフォルトカスタムクエリ
- manage_default_query
## DMSF
- view_dmsf_file_revision_accesses
- view_dmsf_file_revisions
- view_dmsf_folders
- user_preferences
- view_dmsf_files
- email_documents
- folder_manipulation
- file_manipulation
- file_delete
- force_file_unlock
- file_approval
- manage_workflows
- display_system_folders
## Webhook
- manage_hook
## 用語集
- manage_glossary_terms
- view_glossary_terms
- name: 開発者
id: 4
append_permissions:
### プロジェクト
- copy_project
## チケットトラッキング
- copy_issues
- edit_own_issues
- edit_own_issue_notes
- set_own_issues_private
- import_issues
## Wiki
- delete_wiki_pages_attachments
### 文書
- add_documents
- edit_documents
- delete_documents
## 時間管理
- edit_own_time_entries
- import_time_entries
## チェックリスト
- view_checklists
- done_checklists
- edit_checklists
## Easy Gantt
- view_easy_gantt
- edit_easy_gantt
## チケットテンプレート
- edit_issue_templates
- show_issue_templates
- manage_issue_templates
## additionals
- log_time_on_closed_issues
## DMSF
- view_dmsf_file_revisions
- view_dmsf_folders
- user_preferences
- view_dmsf_files
- email_documents
- folder_manipulation
- file_manipulation
- file_delete
## Webhook
- manage_hook
## 用語集
- manage_glossary_terms
- view_glossary_terms
- name: 報告者
id: 5
append_permissions:
### 文書
- add_documents
- edit_documents
## チケットトラッキング
- copy_issues
- edit_own_issues
- edit_own_issue_notes
- set_own_issues_private
- import_issues
## 時間管理
- edit_own_time_entries
- import_time_entries
## チェックリスト
- view_checklists
- done_checklists
## Easy Gantt
- view_easy_gantt
## additionals
- log_time_on_closed_issues
## チケットテンプレート
- show_issue_templates
## DMSF
- view_dmsf_file_revisions
- view_dmsf_folders
- user_preferences
- view_dmsf_files
- email_documents
## 用語集
- view_glossary_terms
- name: ゲスト
permissions:
- view_issues
- view_news
- view_wiki_pages
- view_calendar
- view_gantt
- view_documents
- view_time_entries
## 用語集
- view_glossary_terms
append_permissions:
## Easy Gantt
- view_easy_gantt
copy_workflow_from: 報告者
# --------------------
# Redmineの設定(カスタムフィールド:チケット)
# --------------------
redmine_issue_custom_fields:
- name: 理由
field_format: string
description: ステータスを変更した理由を記載します
is_required: false
visible: true
searchable: false
is_filter: true
trackers:
- 要望
- タスク
- 不具合
- 運用保守
- 問い合わせ
# --------------------
# Redmineの設定(チケットの優先度)
# --------------------
redmine_priorities:
- name: 低い
id: 1
- name: 通常
id: 2
is_default: true
- name: 高い
id: 3
- name: 早急に
id: 4
- name: 緊急
id: 5
# --------------------
# Redmineの設定(文書カテゴリ)
# --------------------
redmine_document_categories:
- name: ユーザーマニュアル
id: 6
- name: 開発ドキュメント
id: 7
# --------------------
# Redmineの設定(作業分類)
# --------------------
redmine_time_entry_activities:
- name: 設計
id: 8
- name: コーディング
id: 9
- name: テスト
- name: ディレクション
- name: ドキュメント
- name: 調査
- name: その他
# --------------------
# Redmineの設定(カスタムフィールド:プロジェクト)
# --------------------
redmine_project_custom_fields:
- name: Slack Channel
field_format: string
description: 通知先のチャンネル名を設定してください、通知を無効化する場合は「-」を設定してください
is_required: false
visible: true
searchable: false
is_filter: false
- name: Slack URL
field_format: link
description: 異なるワークスペースに通知する場合は、該当Slackの「Incoming WebHook」のトークンを指定してください。
is_required: false
visible:
- 管理者
searchable: false
is_filter: false
# --------------------
# Redmineの設定(カスタムフィールド:ユーザー)
# --------------------
redmine_user_custom_fields:
- name: 自己紹介
field_format: text
position: 1
- name: Githubアカウント
field_format: string
description: Githubアカウント名またはURLを設定します
position: 2
- name: 電話番号
field_format: string
position: 3
- name: ログイン後の遷移先
field_format: string
description: Redmineログインした時に表示するページを指定します。例:ログイン後にマイページを表示する場合は「/my/page」と設定しします
default_value: ""
visible: false
position: 4
- name: MBTI/16パーソナリティ
field_format: list
description: |
16パーソナリティの性格診断テストの結果を選択してください
https://www.16personalities.com/ja
possible_values: |
ENTP
INTJ
INTP
ENTJ
INFJ
INFP
ENFP
ENFJ
ISTJ
ISFJ
ESTJ
ESFJ
ESTP
ESFP
ISTP
ISFP
url_pattern: https://www.16personalities.com/ja/%value%%E5%9E%8B%E3%81%AE%E6%80%A7%E6%A0%BC
position: 5
- name: Slack Username
field_format: string
description: "SlackのユーザーIDを設定します"
visible: false
position: 6
# --------------------
# Redmineの設定(ワークフロー)
# --------------------
redmine_workflows:
- roles: [管理者]
trackers: [要望, タスク, 不具合, 運用保守, 問い合わせ]
transitions:
- from: null
to: [未対応, 対応中]
- from: 未対応
to: [対応中, 対応済み, 確認待ち, フィードバック, 保留, 経過観察, 完了, 破棄]
- from: 対応中
to: [未対応, 対応済み, 確認待ち, フィードバック, 保留, 経過観察, 完了, 破棄]
- from: 対応済み
to: [未対応, 対応中, 確認待ち, フィードバック, 保留, 経過観察, 完了, 破棄]
- from: 確認待ち
to: [未対応, 対応中, 対応済み, フィードバック, 保留, 経過観察, 完了, 破棄]
- from: フィードバック
to: [未対応, 対応中, 対応済み, 確認待ち, 保留, 経過観察, 完了, 破棄]
- from: 保留
to: [未対応, 対応中, 対応済み, 確認待ち, フィードバック, 経過観察, 完了, 破棄]
- from: 経過観察
to: [未対応, 対応中, 対応済み, 確認待ち, フィードバック, 保留, 完了, 破棄]
- from: 完了
to: [未対応, 対応中, 対応済み, 確認待ち, フィードバック, 保留, 経過観察, 破棄]
- from: 破棄
to: [未対応, 対応中, 対応済み, 確認待ち, フィードバック, 保留, 経過観察, 完了]
- roles: [開発者]
trackers: [要望]
transitions:
- from: null
to: [未対応, 対応中]
- from: 未対応
to: [対応中, 対応済み, 確認待ち, 保留, 破棄]
- from: 対応中
to: [未対応, 対応済み, 確認待ち, 保留, 完了, 破棄]
- from: 対応済み
to: [対応中, 確認待ち, 保留, 完了]
- from: 確認待ち
to: [フィードバック, 保留, 完了, 破棄]
- from: フィードバック
to: [未対応, 対応中, 確認待ち, 保留, 完了, 破棄]
- from: 保留
to: [未対応, 対応中, 対応済み, 確認待ち, 完了, 破棄]
- roles: [開発者]
trackers: [タスク, 運用保守, 問い合わせ]
transitions:
- from: null
to: [未対応, 対応中]
- from: 未対応
to: [対応中, 対応済み, 確認待ち, 保留, 経過観察, 破棄]
- from: 対応中
to: [未対応, 対応済み, 確認待ち, 保留, 経過観察, 完了, 破棄]
- from: 対応済み
to: [対応中, 確認待ち, 保留, 経過観察, 完了]
- from: 確認待ち
to: [フィードバック, 保留, 経過観察, 完了, 破棄]
- from: フィードバック
to: [未対応, 対応中, 確認待ち, 保留, 経過観察, 完了, 破棄]
- from: 保留
to: [未対応, 対応中, 対応済み, 確認待ち, 経過観察, 完了, 破棄]
- from: 経過観察
to: [未対応, 対応中, 確認待ち, フィードバック, 保留, 完了, 破棄]
- roles: [開発者]
trackers: [不具合]
transitions:
- from: null
to: [未対応, 対応中]
- from: 未対応
to: [対応中, 対応済み, 確認待ち, 保留, 経過観察, 破棄]
- from: 対応中
to: [未対応, 対応済み, 確認待ち, 保留, 経過観察, 破棄]
- from: 対応済み
to: [対応中, 確認待ち, 保留, 経過観察, 完了]
- from: 確認待ち
to: [フィードバック, 保留, 経過観察, 完了, 破棄]
- from: フィードバック
to: [未対応, 対応中, 確認待ち, 保留, 経過観察, 破棄]
- from: 保留
to: [未対応, 対応中, 対応済み, 確認待ち, 完了, 破棄]
- from: 経過観察
to: [未対応, 対応中, 確認待ち, フィードバック, 保留, 完了, 破棄]
- roles: [報告者]
trackers: [要望, タスク, 不具合, 運用保守]
transitions:
- from: null
to: [未対応]
- from: 未対応
to: [完了, 破棄]
- from: 対応中
to: [完了, 破棄]
- from: 対応済み
to: [完了, 破棄]
- from: 確認待ち
to: [フィードバック, 完了, 破棄]
- from: フィードバック
to: [確認待ち, 完了, 破棄]
# --------------------
# Redmineの設定(ワークフロー:フィールドの権限)
# --------------------
redmine_workflow_permissions:
- roles: [管理者, 開発者, 報告者]
trackers: [要望, タスク, 不具合, 運用保守, 問い合わせ]
permissions:
- statuses: [未対応, 対応中, 対応済み, 確認待ち, フィードバック, 経過観察, 完了]
fields: 理由
permission: readonly
- statuses: [保留, 破棄]
fields: 理由
permission: required
- roles: [管理者, 開発者, 報告者]
trackers: [タスク, 不具合, 運用保守, 問い合わせ]
permissions:
- statuses: [対応中, 対応済み, 確認待ち, フィードバック, 経過観察, 完了]
fields: assigned_to
permission: required
- statuses: 経過観察
fields: due_date
permission: required
- statuses: [対応済み, 完了]
fields: done_ratio
permission: required
# --------------------
# Redmineの設定(設定)
# --------------------
redmine_settings:
## -------------
## 認証
## -------------
## 認証が必要
login_required: 1
## 自動ログイン
autologin: 30
## -------------
## API
## -------------
## RESTによるWebサービスを有効にする
rest_api_enabled: 1
host_name: "{{ inventory_hostname }}"
## -------------
## 表示
## -------------
## テーマ
ui_theme: PurpleMine2
## 新規オブジェクト作成タブ
# new_item_menu_tab: 0
## ウェルカムメッセージ
welcome_text: "{{ lookup('file', redmine_data_dir + '/wellcome.md') }}"
## -------------
## チケットトラッキング
## -------------
# 異なるプロジェクトのチケット間で関連の設定を許可
cross_project_issue_relations: 1
# チケットをコピーしたときに関連を設定
link_copied_issue: 0
# 現在の日付を新しいチケットの開始日とする
default_issue_start_date_to_creation_date: 0
## -------------
## プロジェクト
## -------------
default_projects_public: 0
## ----------------------
## 各プラグインの設定
## ----------------------
## issue templates
plugin_redmine_issue_templates:
apply_global_template_to_all_projects: 'true'
apply_template_when_edit_issue: 'false'
enable_builtin_fields: 'false'
## view customize
plugin_view_customize:
create_api_access_key: '1'
## additionals
plugin_additionals:
new_ticket_message: 登録前に記載内容に漏れがないか確認しましょう
# --------------------
# Redmineの設定(カスタムクエリ)
# --------------------
redmine_custom_queries:
- name: 先月の作業実績
filters:
status:
operator: c
tracker:
operator: "="
values:
- タスク
- 不具合
- 運用保守
assigned_to:
operator: "="
values:
- me
closed_on:
operator: "lm"
group_by: project
columns:
# トラッカー
- tracker
# 題名
- subject
# 優先度
- priority
# 担当者
- assigned_to
# 予定時間
- estimated_hours
# 作業時間
- spent_hours
# 終了日
- closed_on
sort:
# 終了日/昇順
- field: closed_on
order: asc
# チケットNo/昇順
- field: id
order: asc
total:
# 予定時間
- estimated_hours
# 作業時間
- spent_hours
- name: 今月の作業実績
filters:
status:
operator: c
tracker:
operator: "="
values:
- タスク
- 不具合
- 運用保守
assigned_to:
operator: "="
values:
- me
closed_on:
operator: "m"
group_by: project
columns:
# トラッカー
- tracker
# 題名
- subject
# 優先度
- priority
# 担当者
- assigned_to
# 予定時間
- estimated_hours
# 作業時間
- spent_hours
# 終了日
- closed_on
sort:
# 終了日/昇順
- field: closed_on
order: asc
# チケットNp/昇順
- field: id
order: asc
total:
# 予定時間
- estimated_hours
# 作業時間
- spent_hours
- name: 確認待ちのチケット
filters:
status:
operator: "="
values: 確認待ち
assigned_to:
operator: "="
values:
- me
columns:
# プロジェクト
- project
# トラッカー
- tracker
# 題名
- subject
# 優先度
- priority
# 期日
- due_date
# 更新日
- updated_on
# 最新のコメント
- last_notes
sort:
# ID/昇順
- field: id
order: asc
- name: フィードバックがあったチケット
filters:
status:
operator: "="
values:
- フィードバック
assigned_to:
operator: "="
values:
- me
columns:
# プロジェクト
- project
# トラッカー
- tracker
# 題名
- subject
# 優先度
- priority
# 期日
- due_date
# 更新日
- updated_on
# 最新のコメント
- last_notes
sort:
# ID/昇順
- field: id
order: asc
- name: 期日が3日以内のチケット
filters:
status:
operator: o
tracker:
operator: "="
values:
- タスク
- 不具合
- 運用保守
assigned_to:
operator: "="
values:
- me
due_date:
operator: '<t+'
values:
- "3"
columns:
# プロジェクト
- project
# トラッカー
- tracker
# 題名
- subject
# 優先度
- priority
# 優先度
- status
# 進捗率
- done_ratio
# 期日
- due_date
sort:
# 期日/昇順
- field: due_date
order: asc
# 優先度/降順
- field: priority
order: desc
# チケットNo/昇順
- field: id
order: asc
## --
## 一般ユーザー向けプロジェクトのトラッカー
## --
simple_project_trackers:
- 要望
- タスク
## --
## 一般ユーザー向けプロジェクトのモジュール
## --
simple_project_modules:
### ------------------
### 標準
### ------------------
## チケットトラッキング
- issue_tracking
## 時間管理
# - time_tracking
## ニュース
- news
## 文書
- documents
## ファイル
- files
## Wiki
- wiki
## リポジトリ
# - repository
## フォーラム
# - boards
## カレンダー
# - calendar
## ガントチャート
# - gantt
### ------------------
### プラグイン
### ------------------
## チケットテンプレート
- issue_templates
## チケットパネル
# - issues_panel
## Easy Gantt
# - easy_gantt
## DMSF
# - dmsf
## デフォルトカスタムクエリ
- default_custom_query
### 用語集
- glossary
## --
## 技術者向けプロジェクトのトラッカー
## --
develop_project_trackers:
- 要望
- タスク
- 不具合
- 運用保守
## --
## 技術者向けプロジェクトのモジュール
## --