Add endpoint for room creation

This commit is contained in:
Pim Kunis 2021-07-10 23:16:00 +02:00
parent 80c8d3a66b
commit 598af7a884
15 changed files with 679 additions and 551 deletions
lib/matrix_server

View file

@ -8,7 +8,7 @@ defmodule MatrixServer.Device do
@primary_key false
schema "devices" do
field :device_id, :string, primary_key: true
field :access_token, :string
field :access_token, :string, redact: true
field :display_name, :string
belongs_to :account, Account,