forked from kotasuizu/node-red-contrib-gitlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitlab.html
747 lines (695 loc) · 22.4 KB
/
gitlab.html
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
<!--
Copyright (c) 2017 Kota Suizu
Released under the MIT license
http://opensource.org/licenses/mit-license.php
-->
<!--
GitLab API Config
-->
<script type="text/x-red" data-template-name="gitlab-config">
<div class="form-row">
<label for="node-config-input-url"><i class="fa fa-globe"></i> API URL</label>
<input type="text" id="node-config-input-url" placeholder="GitLab API URL">
</div>
<div class="form-row">
<label for="node-config-input-key"><i class="fa fa-lock"></i> Token</label>
<input type="password" id="node-config-input-key" placeholder="Personal Access Token">
</div>
<div class="form-row">
<label for="node-config-input-project_id"><i class="fa fa-bookmark"></i> Project ID</label>
<input type="text" id="node-config-input-project_id" placeholder="ProjectID">
</div>
<div class="form-row">
<label for="node-config-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-config-input-name" placeholder="Name">
</div>
</script>
<script type="text/x-red" data-help-name="gitlab-config">
<p>GitLab APIs Config</p>
<p>
Set the following in the node setting.:
<ul>
<li><code>API URL</code> :
<Strong>(required String)</Strong> GitLab API URL. (e.g. https://gitlab.com/, https://git.ng.bluemix.net/)</li>
<li><code>Token</code> :
<Strong>(required String)</Strong> Personal Access Token</li>
<li><code>Project ID</code> : (Number) The ID of a project</li>
</ul>
</p>
</script>
<script type="text/javascript">
RED.nodes.registerType('gitlab-config', {
category: "config",
color: "rgb(114, 199, 231)",
defaults: {
url: {
value: "",
required: true
},
project_id: {
value: ""
},
name: {
value: ""
}
},
credentials: {
key: {
type: "password",
required: true
}
},
label: function () {
return this.name;
}
});
</script>
<!--
### Issues ##################################################################
-->
<!--
GitLab API List Issues
-->
<script type="text/x-red" data-template-name="GitLab-List-Issues">
<div class="form-row">
<label for="node-input-gitlabconfig"><i class="fa fa-globe"></i> API Key</label>
<input type="text" id="node-input-gitlabconfig">
</div>
<div class="form-row">
<label for="node-input-state"><i class="fa fa-tag"></i> State</label>
<select type="text" id="node-input-state">
<option value="all">all</option>
<option value="opened">opened</option>
<option value="closed">closed</option>
</select>
</div>
<div class="form-row">
<label for="node-input-labels"><i class="fa fa-tag"></i> Labels</label>
<input type="text" id="node-input-labels" placeholder="Labels">
</div>
<div class="form-row">
<label for="node-input-milestone"><i class="fa fa-tag"></i> Milestone</label>
<input type="text" id="node-input-milestone" placeholder="Milestone">
</div>
<div class="form-row">
<label for="node-input-order_by"><i class="fa fa-tag"></i> Order By</label>
<select type="text" id="node-input-order_by">
<option value="created_at">created_at</option>
<option value="updated_at">updated_at</option>
</select>
</div>
<div class="form-row">
<label for="node-input-sort"><i class="fa fa-tag"></i> Sort</label>
<select type="text" id="node-input-sort">
<option value="desc">desc</option>
<option value="asc">asc</option>
</select>
</div>
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
</script>
<script type="text/x-red" data-help-name="GitLab-List-Issues">
<p>Get a list of project issues.</p>
<p>
Set the following in the node setting or in the input payload.:
<ul>
<li><code>msg.payload.project_id</code> :
<Strong>(required Number)</Strong> The ID of a project</li>
<li><code>msg.payload.iid</code> : (Number) Return the issue having the given Issue ID (iid)</li>
<li><code>msg.payload.state</code> : (String) Return all issues or just those that are opened or closed</li>
<li><code>msg.payload.labels</code> : (String) Comma-separated list of label names</li>
<li><code>msg.payload.milestone</code> : (String) Milestone title</li>
<li><code>msg.payload.order_by</code> : (String) Return requests ordered by created_at or updated_at fields. Default is created_at</li>
<li><code>msg.payload.sort</code> : (String) Return requests sorted in asc or desc order. Default is desc</li>
</ul>
</p>
</script>
<script type="text/javascript">
RED.nodes.registerType('GitLab-List-Issues', {
category: 'GitLab',
defaults: {
name: {
value: ""
},
state: {
value: "all"
},
labels: {
value: ""
},
milestone: {
value: ""
},
order_by: {
value: "created_at"
},
sort: {
value: "desc"
},
gitlabconfig: {
type: "gitlab-config",
required: true
}
},
color: "#a493d4",
inputs: 1,
outputs: 1,
icon: "gitlab_logo.svg",
label: function () {
return this.name || "GitLab List Issues";
},
labelStyle: function () {
return this.name ? "node_label_italic" : "";
}
});
</script>
<!--
GitLab API Create Issue
-->
<script type="text/x-red" data-template-name="GitLab-Create-Issue">
<div class="form-row">
<label for="node-input-gitlabconfig"><i class="fa fa-globe"></i> API Key</label>
<input type="text" id="node-input-gitlabconfig">
</div>
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
</script>
<script type="text/x-red" data-help-name="GitLab-Create-Issue">
<p>Creates a new project issue.</p>
<p>
Set the following in the node setting or in the input payload.:
<ul>
<li><code>msg.payload.project_id</code> :
<Strong>(required Number)</Strong> The ID of a project</li>
<li><code>msg.payload.title</code> :
<Strong>(required String)</Strong> The title of an issue</li>
<li><code>msg.payload.description</code> : (String) The description of an issue</li>
<li><code>msg.payload.assignee_id</code> : (Number) The ID of a user to assign issue</li>
<li><code>msg.payload.milestone_id</code> : (Number) The ID of a milestone to assign issue</li>
<li><code>msg.payload.labels</code> : (String) Comma-separated label names for an issue</li>
</ul>
</p>
</script>
<script type="text/javascript">
RED.nodes.registerType('GitLab-Create-Issue', {
category: 'GitLab',
defaults: {
name: {
value: ""
},
gitlabconfig: {
type: "gitlab-config",
required: true
}
},
color: "#a493d4",
inputs: 1,
outputs: 1,
icon: "gitlab_logo.svg",
label: function () {
return this.name || "GitLab Create Issue";
},
labelStyle: function () {
return this.name ? "node_label_italic" : "";
}
});
</script>
<!--
GitLab API Update Issue
-->
<script type="text/x-red" data-template-name="GitLab-Update-Issue">
<div class="form-row">
<label for="node-input-gitlabconfig"><i class="fa fa-globe"></i> API Key</label>
<input type="text" id="node-input-gitlabconfig">
</div>
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
</script>
<script type="text/x-red" data-help-name="GitLab-Update-Issue">
<p>Update a project issue.</p>
<p>
Set the following in the node setting or in the input payload.:
<ul>
<li><code>msg.payload.project_id</code> :
<Strong>(required Number)</Strong> The ID of a project</li>
<li><code>msg.payload.issue_id</code> :
<Strong>(required Number)</Strong> The ID of a project issue</li>
<li><code>msg.payload.title</code> : (String) The title of an issue</li>
<li><code>msg.payload.description</code> : (String) The description of an issue</li>
<li><code>msg.payload.assignee_id</code> : (Number) The ID of a user to assign issue</li>
<li><code>msg.payload.milestone_id</code> : (Number) The ID of a milestone to assign issue</li>
<li><code>msg.payload.labels</code> : (String) Comma-separated label names for an issue</li>
<li><code>msg.payload.state_event</code> : (String) The state event of an issue ('close' to close issue and 'reopen' to reopen it)</li>
</ul>
</p>
</script>
<script type="text/javascript">
RED.nodes.registerType('GitLab-Update-Issue', {
category: 'GitLab',
defaults: {
name: {
value: ""
},
gitlabconfig: {
type: "gitlab-config",
required: true
}
},
color: "#a493d4",
inputs: 1,
outputs: 1,
icon: "gitlab_logo.svg",
label: function () {
return this.name || "GitLab Update Issue";
},
labelStyle: function () {
return this.name ? "node_label_italic" : "";
}
});
</script>
<!--
GitLab API List Notes
-->
<script type="text/x-red" data-template-name="GitLab-List-Notes">
<div class="form-row">
<label for="node-input-gitlabconfig"><i class="fa fa-globe"></i> API Key</label>
<input type="text" id="node-input-gitlabconfig">
</div>
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
</script>
<script type="text/x-red" data-help-name="GitLab-List-Notes">
<p>Gets a list of all notes for a single issue.</p>
<p>
Set the following in the node setting or in the input payload.:
<ul>
<li><code>msg.payload.project_id</code> :
<Strong>(required Number)</Strong> The ID of a project</li>
<li><code>msg.payload.issue_id</code> :
<Strong>(required Number)</Strong> The ID of a project issue</li>
</ul>
</p>
</script>
<script type="text/javascript">
RED.nodes.registerType('GitLab-List-Notes', {
category: 'GitLab',
defaults: {
name: {
value: ""
},
gitlabconfig: {
type: "gitlab-config",
required: true
}
},
color: "#a493d4",
inputs: 1,
outputs: 1,
icon: "gitlab_logo.svg",
label: function () {
return this.name || "GitLab List Notes";
},
labelStyle: function () {
return this.name ? "node_label_italic" : "";
}
});
</script>
<!--
GitLab API Create Note
-->
<script type="text/x-red" data-template-name="GitLab-Create-Note">
<div class="form-row">
<label for="node-input-gitlabconfig"><i class="fa fa-globe"></i> API Key</label>
<input type="text" id="node-input-gitlabconfig">
</div>
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
</script>
<script type="text/x-red" data-help-name="GitLab-Create-Note">
<p>Creates a new note to a single project issue.</p>
<p>
Set the following in the node setting or in the input payload.:
<ul>
<li><code>msg.payload.project_id</code> :
<Strong>(required Number)</Strong> The ID of a project</li>
<li><code>msg.payload.issue_id</code> :
<Strong>(required Number)</Strong> The ID of a project issue</li>
<li><code>msg.payload.body</code> :
<Strong>(required String)</Strong> The content of a note</li>
</ul>
</p>
</script>
<script type="text/javascript">
RED.nodes.registerType('GitLab-Create-Note', {
category: 'GitLab',
defaults: {
name: {
value: ""
},
gitlabconfig: {
type: "gitlab-config",
required: true
}
},
color: "#a493d4",
inputs: 1,
outputs: 1,
icon: "gitlab_logo.svg",
label: function () {
return this.name || "GitLab Create Note";
},
labelStyle: function () {
return this.name ? "node_label_italic" : "";
}
});
</script>
<!--
GitLab API Update Note
-->
<script type="text/x-red" data-template-name="GitLab-Update-Note">
<div class="form-row">
<label for="node-input-gitlabconfig"><i class="fa fa-globe"></i> API Key</label>
<input type="text" id="node-input-gitlabconfig">
</div>
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
</script>
<script type="text/x-red" data-help-name="GitLab-Update-Note">
<p>Modify existing note of an issue.</p>
<p>
Set the following in the node setting or in the input payload.:
<ul>
<li><code>msg.payload.project_id</code> :
<Strong>(required Number)</Strong> The ID of a project</li>
<li><code>msg.payload.issue_id</code> :
<Strong>(required Number)</Strong> The ID of a project issue</li>
<li><code>msg.payload.note_id</code> :
<Strong>(required Number)</Strong> The ID of a note</li>
<li><code>msg.payload.body</code> :
<Strong>(required String)</Strong> The content of a note</li>
</ul>
</p>
</script>
<script type="text/javascript">
RED.nodes.registerType('GitLab-Update-Note', {
category: 'GitLab',
defaults: {
name: {
value: ""
},
gitlabconfig: {
type: "gitlab-config",
required: true
}
},
color: "#a493d4",
inputs: 1,
outputs: 1,
icon: "gitlab_logo.svg",
label: function () {
return this.name || "GitLab Update Note";
},
labelStyle: function () {
return this.name ? "node_label_italic" : "";
}
});
</script>
<!--
### RepositoryFiles #########################################################
-->
<!--
GitLab Get RepositoryFile
-->
<script type="text/x-red" data-template-name="GitLab-Get-RepositoryFile">
<div class="form-row">
<label for="node-input-gitlabconfig"><i class="fa fa-globe"></i> API Key</label>
<input type="text" id="node-input-gitlabconfig">
</div>
<div class="form-row">
<label for="node-input-ref"><i class="fa fa-tag"></i> Ref</label>
<input type="text" id="node-input-ref" placeholder="The name of branch, tag or commit">
</div>
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
</script>
<script type="text/x-red" data-help-name="GitLab-Get-RepositoryFile">
<p>Get file from repository. Allows you to receive information about file in repository like name, size, content. Note that file content is Base64 encoded.</p>
<p>
Set the following in the node setting or in the input payload.:
<ul>
<li><code>msg.payload.project_id</code> :
<Strong>(required Number)</Strong> The ID of a project</li>
<li><code>msg.payload.file_path</code> :
<Strong>(required String)</Strong> Full path to file. </li>
<li><code>msg.payload.ref</code> :
<Strong>(required String)</Strong> The name of branch, tag or commit</li>
</ul>
</p>
</script>
<script type="text/javascript">
RED.nodes.registerType('GitLab-Get-RepositoryFile', {
category: 'GitLab',
defaults: {
name: {
value: ""
},
ref: {
value: ""
},
gitlabconfig: {
type: "gitlab-config",
required: true
}
},
color: "#a493d4",
inputs: 1,
outputs: 1,
icon: "gitlab_logo.svg",
label: function () {
return this.name || "GitLab Get RepositoryFile";
},
labelStyle: function () {
return this.name ? "node_label_italic" : "";
}
});
</script>
<!--
GitLab Create RepositoryFile
-->
<script type="text/x-red" data-template-name="GitLab-Create-RepositoryFile">
<div class="form-row">
<label for="node-input-gitlabconfig"><i class="fa fa-globe"></i> API Key</label>
<input type="text" id="node-input-gitlabconfig">
</div>
<div class="form-row">
<label for="node-input-branch_name"><i class="fa fa-tag"></i> Branch</label>
<input type="text" id="node-input-branch_name" placeholder="The name of branch,">
</div>
<div class="form-row">
<label for="node-input-encoding"><i class="fa fa-tag"></i> Encoding</label>
<select type="text" id="node-input-encoding">
<option value="text">text</option>
<option value="base64">base64</option>
</select>
</div>
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
</script>
<script type="text/x-red" data-help-name="GitLab-Create-RepositoryFile">
<p>Create new file in repository</p>
<p>
Set the following in the node setting or in the input payload.:
<ul>
<li><code>msg.payload.project_id</code> :
<Strong>(required Number)</Strong> The ID of a project</li>
<li><code>msg.payload.file_path</code> :
<Strong>(required String)</Strong> Full path to file. </li>
<li><code>msg.payload.branch_name</code> :
<Strong>(required String)</Strong> The name of branch</li>
<li><code>msg.payload.encoding</code> : (String) Select encoding to 'text' or 'base64'. 'text' is default.</li>
<li><code>msg.payload.content</code> :
<Strong>(required String)</Strong> File content</li>
<li><code>msg.payload.commit_message</code> :
<Strong>(required String)</Strong> Commit message</li>
</ul>
</p>
</script>
<script type="text/javascript">
RED.nodes.registerType('GitLab-Create-RepositoryFile', {
category: 'GitLab',
defaults: {
name: {
value: ""
},
branch_name: {
value: ""
},
encoding: {
value: "text"
},
gitlabconfig: {
type: "gitlab-config",
required: true
}
},
color: "#a493d4",
inputs: 1,
outputs: 1,
icon: "gitlab_logo.svg",
label: function () {
return this.name || "GitLab Create RepositoryFile";
},
labelStyle: function () {
return this.name ? "node_label_italic" : "";
}
});
</script>
<!--
GitLab Update RepositoryFile
-->
<script type="text/x-red" data-template-name="GitLab-Update-RepositoryFile">
<div class="form-row">
<label for="node-input-gitlabconfig"><i class="fa fa-globe"></i> API Key</label>
<input type="text" id="node-input-gitlabconfig">
</div>
<div class="form-row">
<label for="node-input-branch_name"><i class="fa fa-tag"></i> Branch</label>
<input type="text" id="node-input-branch_name" placeholder="The name of branch,">
</div>
<div class="form-row">
<label for="node-input-encoding"><i class="fa fa-tag"></i> Encoding</label>
<select type="text" id="node-input-encoding">
<option value="text">text</option>
<option value="base64">base64</option>
</select>
</div>
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
</script>
<script type="text/x-red" data-help-name="GitLab-Update-RepositoryFile">
<p>Update existing file in repository</p>
<p>
Set the following in the node setting or in the input payload.:
<ul>
<li><code>msg.payload.project_id</code> :
<Strong>(required Number)</Strong> The ID of a project</li>
<li><code>msg.payload.file_path</code> :
<Strong>(required String)</Strong> Full path to file. </li>
<li><code>msg.payload.branch_name</code> :
<Strong>(required String)</Strong> The name of branch</li>
<li><code>msg.payload.encoding</code> : (String) Select encoding to 'text' or 'base64'. 'text' is default.</li>
<li><code>msg.payload.content</code> :
<Strong>(required String)</Strong> File content</li>
<li><code>msg.payload.commit_message</code> :
<Strong>(required String)</Strong> Commit message</li>
</ul>
</p>
</script>
<script type="text/javascript">
RED.nodes.registerType('GitLab-Update-RepositoryFile', {
category: 'GitLab',
defaults: {
name: {
value: ""
},
branch_name: {
value: ""
},
encoding: {
value: "text"
},
gitlabconfig: {
type: "gitlab-config",
required: true
}
},
color: "#a493d4",
inputs: 1,
outputs: 1,
icon: "gitlab_logo.svg",
label: function () {
return this.name || "GitLab Update RepositoryFile";
},
labelStyle: function () {
return this.name ? "node_label_italic" : "";
}
});
</script>
<!--
GitLab Remove RepositoryFile
-->
<script type="text/x-red" data-template-name="GitLab-Remove-RepositoryFile">
<div class="form-row">
<label for="node-input-gitlabconfig"><i class="fa fa-globe"></i> API Key</label>
<input type="text" id="node-input-gitlabconfig">
</div>
<div class="form-row">
<label for="node-input-branch_name"><i class="fa fa-tag"></i> Branch</label>
<input type="text" id="node-input-branch_name" placeholder="The name of branch,">
</div>
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
</script>
<script type="text/x-red" data-help-name="GitLab-Remove-RepositoryFile">
<p>Delete existing file in repository</p>
<p>
Set the following in the node setting or in the input payload.:
<ul>
<li><code>msg.payload.project_id</code> :
<Strong>(required Number)</Strong> The ID of a project</li>
<li><code>msg.payload.file_path</code> :
<Strong>(required String)</Strong> Full path to file. </li>
<li><code>msg.payload.branch_name</code> :
<Strong>(required String)</Strong> The name of branch</li>
<li><code>msg.payload.commit_message</code> :
<Strong>(required String)</Strong> Commit message</li>
</ul>
</p>
</script>
<script type="text/javascript">
RED.nodes.registerType('GitLab-Remove-RepositoryFile', {
category: 'GitLab',
defaults: {
name: {
value: ""
},
branch_name: {
value: ""
},
gitlabconfig: {
type: "gitlab-config",
required: true
}
},
color: "#a493d4",
inputs: 1,
outputs: 1,
icon: "gitlab_logo.svg",
label: function () {
return this.name || "GitLab Remove RepositoryFile";
},
labelStyle: function () {
return this.name ? "node_label_italic" : "";
}
});
</script>