Skip to content

Commit 51e47f1

Browse files
authored
Fixed ReviewFabricRestrictions command args (project-chip#34647)
Was supposed to be a list of AccessRestrictionEntryStructs, not AccessRestrictionStructs. Spec text updated in PR project-chip#10176 Since AccessRestrictionEntryStruct is fabric-sensitive, we use CommissioningAccessRestrictionEntryStruct.
1 parent 161b256 commit 51e47f1

File tree

97 files changed

+152
-118
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+152
-118
lines changed

examples/air-purifier-app/air-purifier-common/air-purifier-app.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ cluster AccessControl = 31 {
219219
readonly attribute int16u clusterRevision = 65533;
220220

221221
request struct ReviewFabricRestrictionsRequest {
222-
AccessRestrictionStruct arl[] = 0;
222+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
223223
}
224224

225225
response struct ReviewFabricRestrictionsResponse = 1 {

examples/air-quality-sensor-app/air-quality-sensor-common/air-quality-sensor-app.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ cluster AccessControl = 31 {
219219
readonly attribute int16u clusterRevision = 65533;
220220

221221
request struct ReviewFabricRestrictionsRequest {
222-
AccessRestrictionStruct arl[] = 0;
222+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
223223
}
224224

225225
response struct ReviewFabricRestrictionsResponse = 1 {

examples/all-clusters-app/all-clusters-common/all-clusters-app.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ cluster AccessControl = 31 {
621621
readonly attribute int16u clusterRevision = 65533;
622622

623623
request struct ReviewFabricRestrictionsRequest {
624-
AccessRestrictionStruct arl[] = 0;
624+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
625625
}
626626

627627
response struct ReviewFabricRestrictionsResponse = 1 {

examples/all-clusters-minimal-app/all-clusters-common/all-clusters-minimal-app.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ cluster AccessControl = 31 {
514514
readonly attribute int16u clusterRevision = 65533;
515515

516516
request struct ReviewFabricRestrictionsRequest {
517-
AccessRestrictionStruct arl[] = 0;
517+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
518518
}
519519

520520
response struct ReviewFabricRestrictionsResponse = 1 {

examples/bridge-app/bridge-common/bridge-app.matter

+2-2
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ cluster AccessControl = 31 {
437437
readonly attribute int16u clusterRevision = 65533;
438438

439439
request struct ReviewFabricRestrictionsRequest {
440-
AccessRestrictionStruct arl[] = 0;
440+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
441441
}
442442

443443
response struct ReviewFabricRestrictionsResponse = 1 {
@@ -566,7 +566,7 @@ cluster AccessControl = 31 {
566566
readonly attribute int16u clusterRevision = 65533;
567567

568568
request struct ReviewFabricRestrictionsRequest {
569-
AccessRestrictionStruct arl[] = 0;
569+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
570570
}
571571

572572
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/noip_rootnode_dimmablelight_bCwGYSDpoe.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ cluster AccessControl = 31 {
514514
readonly attribute int16u clusterRevision = 65533;
515515

516516
request struct ReviewFabricRestrictionsRequest {
517-
AccessRestrictionStruct arl[] = 0;
517+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
518518
}
519519

520520
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_airpurifier_73a6fe2651.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ cluster AccessControl = 31 {
291291
readonly attribute int16u clusterRevision = 65533;
292292

293293
request struct ReviewFabricRestrictionsRequest {
294-
AccessRestrictionStruct arl[] = 0;
294+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
295295
}
296296

297297
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_airpurifier_airqualitysensor_temperaturesensor_humiditysensor_thermostat_56de3d5f45.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ cluster AccessControl = 31 {
296296
readonly attribute int16u clusterRevision = 65533;
297297

298298
request struct ReviewFabricRestrictionsRequest {
299-
AccessRestrictionStruct arl[] = 0;
299+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
300300
}
301301

302302
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_airqualitysensor_e63187f6c9.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ cluster AccessControl = 31 {
219219
readonly attribute int16u clusterRevision = 65533;
220220

221221
request struct ReviewFabricRestrictionsRequest {
222-
AccessRestrictionStruct arl[] = 0;
222+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
223223
}
224224

225225
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_basicvideoplayer_0ff86e943b.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ cluster AccessControl = 31 {
416416
readonly attribute int16u clusterRevision = 65533;
417417

418418
request struct ReviewFabricRestrictionsRequest {
419-
AccessRestrictionStruct arl[] = 0;
419+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
420420
}
421421

422422
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_colortemperaturelight_hbUnzYVeyn.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ cluster AccessControl = 31 {
493493
readonly attribute int16u clusterRevision = 65533;
494494

495495
request struct ReviewFabricRestrictionsRequest {
496-
AccessRestrictionStruct arl[] = 0;
496+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
497497
}
498498

499499
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_contactsensor_27f76aeaf5.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ cluster AccessControl = 31 {
219219
readonly attribute int16u clusterRevision = 65533;
220220

221221
request struct ReviewFabricRestrictionsRequest {
222-
AccessRestrictionStruct arl[] = 0;
222+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
223223
}
224224

225225
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_contactsensor_lFAGG1bfRO.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ cluster AccessControl = 31 {
317317
readonly attribute int16u clusterRevision = 65533;
318318

319319
request struct ReviewFabricRestrictionsRequest {
320-
AccessRestrictionStruct arl[] = 0;
320+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
321321
}
322322

323323
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_dimmablelight_bCwGYSDpoe.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ cluster AccessControl = 31 {
514514
readonly attribute int16u clusterRevision = 65533;
515515

516516
request struct ReviewFabricRestrictionsRequest {
517-
AccessRestrictionStruct arl[] = 0;
517+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
518518
}
519519

520520
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_dimmablepluginunit_f8a9a0b9d4.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ cluster AccessControl = 31 {
514514
readonly attribute int16u clusterRevision = 65533;
515515

516516
request struct ReviewFabricRestrictionsRequest {
517-
AccessRestrictionStruct arl[] = 0;
517+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
518518
}
519519

520520
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_dishwasher_cc105034fe.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ cluster AccessControl = 31 {
219219
readonly attribute int16u clusterRevision = 65533;
220220

221221
request struct ReviewFabricRestrictionsRequest {
222-
AccessRestrictionStruct arl[] = 0;
222+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
223223
}
224224

225225
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_doorlock_aNKYAreMXE.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ cluster AccessControl = 31 {
219219
readonly attribute int16u clusterRevision = 65533;
220220

221221
request struct ReviewFabricRestrictionsRequest {
222-
AccessRestrictionStruct arl[] = 0;
222+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
223223
}
224224

225225
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_extendedcolorlight_8lcaaYJVAa.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ cluster AccessControl = 31 {
514514
readonly attribute int16u clusterRevision = 65533;
515515

516516
request struct ReviewFabricRestrictionsRequest {
517-
AccessRestrictionStruct arl[] = 0;
517+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
518518
}
519519

520520
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_fan_7N2TobIlOX.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ cluster AccessControl = 31 {
296296
readonly attribute int16u clusterRevision = 65533;
297297

298298
request struct ReviewFabricRestrictionsRequest {
299-
AccessRestrictionStruct arl[] = 0;
299+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
300300
}
301301

302302
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_flowsensor_1zVxHedlaV.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ cluster AccessControl = 31 {
317317
readonly attribute int16u clusterRevision = 65533;
318318

319319
request struct ReviewFabricRestrictionsRequest {
320-
AccessRestrictionStruct arl[] = 0;
320+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
321321
}
322322

323323
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_genericswitch_2dfff6e516.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ cluster AccessControl = 31 {
219219
readonly attribute int16u clusterRevision = 65533;
220220

221221
request struct ReviewFabricRestrictionsRequest {
222-
AccessRestrictionStruct arl[] = 0;
222+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
223223
}
224224

225225
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_genericswitch_9866e35d0b.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ cluster AccessControl = 31 {
219219
readonly attribute int16u clusterRevision = 65533;
220220

221221
request struct ReviewFabricRestrictionsRequest {
222-
AccessRestrictionStruct arl[] = 0;
222+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
223223
}
224224

225225
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_heatingcoolingunit_ncdGai1E5a.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ cluster AccessControl = 31 {
514514
readonly attribute int16u clusterRevision = 65533;
515515

516516
request struct ReviewFabricRestrictionsRequest {
517-
AccessRestrictionStruct arl[] = 0;
517+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
518518
}
519519

520520
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_humiditysensor_Xyj4gda6Hb.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ cluster AccessControl = 31 {
317317
readonly attribute int16u clusterRevision = 65533;
318318

319319
request struct ReviewFabricRestrictionsRequest {
320-
AccessRestrictionStruct arl[] = 0;
320+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
321321
}
322322

323323
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_laundrywasher_fb10d238c8.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ cluster AccessControl = 31 {
219219
readonly attribute int16u clusterRevision = 65533;
220220

221221
request struct ReviewFabricRestrictionsRequest {
222-
AccessRestrictionStruct arl[] = 0;
222+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
223223
}
224224

225225
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_lightsensor_lZQycTFcJK.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ cluster AccessControl = 31 {
317317
readonly attribute int16u clusterRevision = 65533;
318318

319319
request struct ReviewFabricRestrictionsRequest {
320-
AccessRestrictionStruct arl[] = 0;
320+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
321321
}
322322

323323
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_occupancysensor_iHyVgifZuo.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ cluster AccessControl = 31 {
317317
readonly attribute int16u clusterRevision = 65533;
318318

319319
request struct ReviewFabricRestrictionsRequest {
320-
AccessRestrictionStruct arl[] = 0;
320+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
321321
}
322322

323323
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_onofflight_bbs1b7IaOV.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ cluster AccessControl = 31 {
514514
readonly attribute int16u clusterRevision = 65533;
515515

516516
request struct ReviewFabricRestrictionsRequest {
517-
AccessRestrictionStruct arl[] = 0;
517+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
518518
}
519519

520520
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_onofflight_samplemei.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ cluster AccessControl = 31 {
514514
readonly attribute int16u clusterRevision = 65533;
515515

516516
request struct ReviewFabricRestrictionsRequest {
517-
AccessRestrictionStruct arl[] = 0;
517+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
518518
}
519519

520520
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_onofflightswitch_FsPlMr090Q.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ cluster AccessControl = 31 {
461461
readonly attribute int16u clusterRevision = 65533;
462462

463463
request struct ReviewFabricRestrictionsRequest {
464-
AccessRestrictionStruct arl[] = 0;
464+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
465465
}
466466

467467
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_onoffpluginunit_Wtf8ss5EBY.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ cluster AccessControl = 31 {
389389
readonly attribute int16u clusterRevision = 65533;
390390

391391
request struct ReviewFabricRestrictionsRequest {
392-
AccessRestrictionStruct arl[] = 0;
392+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
393393
}
394394

395395
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_pressuresensor_s0qC9wLH4k.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ cluster AccessControl = 31 {
317317
readonly attribute int16u clusterRevision = 65533;
318318

319319
request struct ReviewFabricRestrictionsRequest {
320-
AccessRestrictionStruct arl[] = 0;
320+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
321321
}
322322

323323
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_pump_5f904818cc.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ cluster AccessControl = 31 {
291291
readonly attribute int16u clusterRevision = 65533;
292292

293293
request struct ReviewFabricRestrictionsRequest {
294-
AccessRestrictionStruct arl[] = 0;
294+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
295295
}
296296

297297
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_pump_a811bb33a0.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ cluster AccessControl = 31 {
291291
readonly attribute int16u clusterRevision = 65533;
292292

293293
request struct ReviewFabricRestrictionsRequest {
294-
AccessRestrictionStruct arl[] = 0;
294+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
295295
}
296296

297297
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_refrigerator_temperaturecontrolledcabinet_temperaturecontrolledcabinet_ffdb696680.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ cluster AccessControl = 31 {
219219
readonly attribute int16u clusterRevision = 65533;
220220

221221
request struct ReviewFabricRestrictionsRequest {
222-
AccessRestrictionStruct arl[] = 0;
222+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
223223
}
224224

225225
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_roboticvacuumcleaner_1807ff0c49.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ cluster AccessControl = 31 {
296296
readonly attribute int16u clusterRevision = 65533;
297297

298298
request struct ReviewFabricRestrictionsRequest {
299-
AccessRestrictionStruct arl[] = 0;
299+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
300300
}
301301

302302
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_roomairconditioner_9cf3607804.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ cluster AccessControl = 31 {
368368
readonly attribute int16u clusterRevision = 65533;
369369

370370
request struct ReviewFabricRestrictionsRequest {
371-
AccessRestrictionStruct arl[] = 0;
371+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
372372
}
373373

374374
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_smokecoalarm_686fe0dcb8.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ cluster AccessControl = 31 {
296296
readonly attribute int16u clusterRevision = 65533;
297297

298298
request struct ReviewFabricRestrictionsRequest {
299-
AccessRestrictionStruct arl[] = 0;
299+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
300300
}
301301

302302
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_speaker_RpzeXdimqA.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ cluster AccessControl = 31 {
437437
readonly attribute int16u clusterRevision = 65533;
438438

439439
request struct ReviewFabricRestrictionsRequest {
440-
AccessRestrictionStruct arl[] = 0;
440+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
441441
}
442442

443443
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_temperaturesensor_Qy1zkNW7c3.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ cluster AccessControl = 31 {
317317
readonly attribute int16u clusterRevision = 65533;
318318

319319
request struct ReviewFabricRestrictionsRequest {
320-
AccessRestrictionStruct arl[] = 0;
320+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
321321
}
322322

323323
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_thermostat_bm3fb8dhYi.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ cluster AccessControl = 31 {
317317
readonly attribute int16u clusterRevision = 65533;
318318

319319
request struct ReviewFabricRestrictionsRequest {
320-
AccessRestrictionStruct arl[] = 0;
320+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
321321
}
322322

323323
response struct ReviewFabricRestrictionsResponse = 1 {

examples/chef/devices/rootnode_windowcovering_RLCxaGi9Yx.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ cluster AccessControl = 31 {
317317
readonly attribute int16u clusterRevision = 65533;
318318

319319
request struct ReviewFabricRestrictionsRequest {
320-
AccessRestrictionStruct arl[] = 0;
320+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
321321
}
322322

323323
response struct ReviewFabricRestrictionsResponse = 1 {

examples/contact-sensor-app/contact-sensor-common/contact-sensor-app.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ cluster AccessControl = 31 {
296296
readonly attribute int16u clusterRevision = 65533;
297297

298298
request struct ReviewFabricRestrictionsRequest {
299-
AccessRestrictionStruct arl[] = 0;
299+
CommissioningAccessRestrictionEntryStruct arl[] = 0;
300300
}
301301

302302
response struct ReviewFabricRestrictionsResponse = 1 {

0 commit comments

Comments
 (0)