summaryrefslogtreecommitdiff
path: root/test/support/test_room_adapter.ex
blob: 6542838d14ae78a99e7b0b0a16620ad418aca3c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
defmodule MatrixAppService.TestRoomAdapter do
  @moduledoc false
  @behaviour MatrixAppService.Adapter.Room

  @impl MatrixAppService.Adapter.Room
  def query_alias("#existing:homeserver") do
    :ok
  end

  def query_alias(_) do
    nil
  end
end