mirror of
https://github.com/langgenius/dify-plugin-sdks.git
synced 2026-07-22 10:25:23 -04:00
4058597f87
* Expand Slack trigger to full Events API catalog * Remove Slack trigger subscription constructor * Remove Slack event selection from subscription schema * Use official Slack icon asset * Stop reading Slack signing secret from constructor parameters * chore: remove tead_id * refactoring --------- Co-authored-by: Claude <noreply@anthropic.com>
12 lines
276 B
Python
12 lines
276 B
Python
from __future__ import annotations
|
|
|
|
from dify_plugin.interfaces.trigger import Event
|
|
|
|
from .._catalog_event import CatalogSlackEvent
|
|
|
|
|
|
class GroupUnarchiveEvent(CatalogSlackEvent, Event):
|
|
"""Slack event handler for `group.unarchive`."""
|
|
|
|
EVENT_KEY = "group_unarchive"
|