Implement client joined rooms endpoint
Track which rooms a local account has joined Add some documentation to modules
This commit is contained in:
parent
9d40f8bc8b
commit
6f8c224d50
8 changed files with 95 additions and 11 deletions
|
@ -1,4 +1,11 @@
|
|||
defmodule MatrixServer.StateResolution.Authorization do
|
||||
@moduledoc """
|
||||
Implementation of Matrix event authorization rules for stat resolution.
|
||||
|
||||
Note that some authorization rules are already checked in
|
||||
`MatrixServer.Event.prevalidate/1` so they are skipped here.
|
||||
"""
|
||||
|
||||
import MatrixServer.StateResolution
|
||||
import Ecto.Query
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue