Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion llmstack/apps/authorization_middleware.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __call__(self, request):
raw_body = request.body

if (
(discord_signature and discord_timestamp) or (slack_signature and slack_timestamp) or True
(discord_signature and discord_timestamp) or (slack_signature and slack_timestamp)
) and re.match(r"^/api/apps/.*/run", path):
app_id = path.split("/")[3]
platform = path.split("/")[4]
Expand Down