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

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

  def query_alias(_) do
    nil
  end
end