We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c16d720 + 0cae144 commit 11414f0Copy full SHA for 11414f0
1 file changed
pybot/endpoints/slack/actions.py
@@ -6,7 +6,7 @@
6
from slack.actions import Action
7
8
from pybot.endpoints.slack.utils.action_messages import *
9
-from pybot.endpoints.slack.utils import COMMUNITY_CHANNEL
+from pybot.endpoints.slack.utils import COMMUNITY_CHANNEL, TICKET_CHANNEL
10
11
logger = logging.getLogger(__name__)
12
@@ -48,7 +48,7 @@ async def open_ticket(action: Action, app: SirBot):
48
"""
49
attachments = ticket_attachments(action)
50
response = {
51
- 'channel': MODERATOR_CHANNEL,
+ 'channel': TICKET_CHANNEL,
52
'attachments': attachments,
53
'text': 'New Ticket Submission',
54
}
0 commit comments