0

我在 block-kit 中使用 slack users-select并希望将我的用户列表限制在下拉选项中(当前显示工作区中的所有用户),并使用给定的 id 或当前组中的特定用户:

"restricted_users": ["Id1", "Id2"..."IdN]

或者

"restricted_users_in_group": true

(仅限于现有组中的用户)

然后仅向这些用户显示选定的菜单,目前我的代码如下所示:

{
        "type": "section",
        "text": {
            "type": "mrkdwn",
            "text": "Test block with users select"
        },
        "accessory": {
            "type": "users_select",
            "placeholder": {
                "type": "plain_text",
                "text": "Select a user",
                "emoji": true
            },
            "action_id": "users_select-action"
        }
    }

我可以static-user-select自己使用和添加名称,但这不会让我拥有“用户状态”(“在线”/“离线”),有时用户可能会动态增加/减少,找不到任何 k/v 或更多信息在文档上,我的方法应该是什么?谢谢!

4

0 回答 0