Change tab field to optional in SlackAppHomeOpenedEvent (#335)

This commit is contained in:
West Xu 2025-10-17 19:50:19 +08:00 committed by GitHub
parent 2df7b714b0
commit e4c2f98510
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -175,7 +175,7 @@ pub enum SlackMessageEventType {
pub struct SlackAppHomeOpenedEvent {
pub user: SlackUserId,
pub channel: SlackChannelId,
pub tab: String,
pub tab: Option<String>,
pub view: Option<SlackView>,
}