DEV: Rename direct message related models

This is a followup of the previous refactor where we created two new
models to handle all the dedicated logic that was present in the
`ChatChannel` model.

For the sake of consistency, `DMChannel` has been renamed to
`DirectMessageChannel` and the previous `DirectMessageChannel` model is
now named `DirectMessage`. This should help reasoning about direct
messages.
This commit is contained in:
Loïc Guitaut
2022-11-02 15:53:36 +01:00
committed by Loïc Guitaut
parent 7e992cb299
commit abcaa1a961
57 changed files with 378 additions and 455 deletions

View File

@ -347,19 +347,11 @@ describe Chat do
context "when followed public channels exist" do
fab!(:user_2) { Fabricate(:user) }
fab!(:channel) do
Fabricate(
:chat_channel,
chatable: Fabricate(:direct_message_channel, users: [user, user_2]),
)
end
fab!(:channel) { Fabricate(:direct_message_channel, users: [user, user_2]) }
before do
Fabricate(:user_chat_channel_membership, user: user, chat_channel: channel, following: true)
Fabricate(
:chat_channel,
chatable: Fabricate(:direct_message_channel, users: [user, user_2]),
)
Fabricate(:direct_message_channel, users: [user, user_2])
end
it "returns them" do