Skip to content

Commit 62f93c7

Browse files
committed
Run all the integration tests - 2021-10-20 PT
1 parent cfcdcc0 commit 62f93c7

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

json-logs/samples/audit/v1/logs.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,9 @@
211211
"new_retention_policy": {
212212
"type": "",
213213
"duration_days": 123
214-
}
214+
},
215+
"who_can_post": {},
216+
"can_thread": {}
215217
}
216218
}
217219
]

slack-api-client/src/main/java/com/slack/api/audit/response/LogsResponse.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,8 @@ public static class Details {
221221
private Boolean tokenRotationEnabledApp; // app_scopes_expanded
222222
private MessageRetentionPolicy oldRetentionPolicy; // channel_retention_changed
223223
private MessageRetentionPolicy newRetentionPolicy; // channel_retention_changed
224+
private ConversationPref whoCanPost; // channel_posting_permissions_updated
225+
private ConversationPref canThread; // channel_posting_permissions_updated
224226
}
225227

226228
@Data
@@ -277,4 +279,10 @@ public static class MessageRetentionPolicy {
277279
private Integer durationDays;
278280
}
279281

282+
@Data
283+
public static class ConversationPref {
284+
private List<String> type;
285+
private List<String> user;
286+
}
287+
280288
}

0 commit comments

Comments
 (0)