-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhance Chat Mentions #156
Conversation
odkhang
commented
Jul 16, 2024
server/tests/live/test_auth.py
Outdated
@@ -1062,3 +1073,4 @@ async def test_anonymous_invite(client, world, stream_room, bbb_room): | |||
"room:poll.vote", | |||
"room:poll.read", | |||
} | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please configure your editor to automatically clean trailing whitespaces (at the end of line).
server/tests/live/test_chat.py
Outdated
@@ -1324,3 +1324,4 @@ async def test_force_join_after_login(world, chat_room): | |||
r = await c2.receive_json_from() | |||
assert r[0] == "chat.channels" | |||
assert channel_id in [c["id"] for c in r[1]["channels"]] | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Clean trailing whitespaces, too.
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="auditlog", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are there migrations relatd to AuditLog
model? I don't see changes of AuditLog
model in this PR.
Hi @hongquan, |