Skip to content

Commit

Permalink
fix: CI checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Muhammad Faraz Maqsood committed Oct 9, 2024
1 parent 787d16c commit 922dfe6
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -363,14 +363,14 @@ def handle_create_thread(self):
except KeyError as e:
raise e
response = forum_api.create_thread(
title,
body,
course_id,
user_id,
request_data.get("anonymous", False),
request_data.get("anonymous_to_peers", False),
request_data.get("commentable_id", "course"),
request_data.get("thread_type", "discussion"),
request_data.get("group_id", None),
title=title,
body=body,
course_id=course_id,
user_id=user_id,
anonymous=request_data.get("anonymous", False),
anonymous_to_peers=request_data.get("anonymous_to_peers", False),
commentable_id=request_data.get("commentable_id", "course"),
thread_type=request_data.get("thread_type", "discussion"),
group_id=request_data.get("group_id", None),
)
return response

0 comments on commit 922dfe6

Please sign in to comment.