Skip to content

Commit 51e47f1

Browse files
authoredJul 31, 2024
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 {

0 commit comments

Comments
 (0)
Please sign in to comment.