We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04b92b1 commit ba39455Copy full SHA for ba39455
src/lib/Backup/Copy/BacklogCopy.php
@@ -9,16 +9,19 @@
9
class BacklogCopy {
10
11
use CopyProject;
12
- use CopyIssue;
13
14
protected array $id_mapping;
15
protected BacklogAPIClient $src_cli;
16
protected BacklogAPIClient $dst_cli;
+ protected int $assignee_user_id;
17
18
public function __construct ( BacklogAPIClient $api_client, $dst_space=null, ) {
19
$this->src_cli = $api_client;
20
$this->dst_cli = $this->dst_space ?? $api_client;
21
}
22
-
+ public function setAssignee(int $user_id){
23
+ // 課題をコピーするときに別プロジェクト二ユーザーがいないとき、代わりに使うユーザ
24
+ $this->assignee_user_id= $user_id;
25
+ }
26
27
0 commit comments