diff options
Diffstat (limited to 'shard/lib/app/chat.ex')
-rw-r--r-- | shard/lib/app/chat.ex | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/shard/lib/app/chat.ex b/shard/lib/app/chat.ex index d253030..4c7fc00 100644 --- a/shard/lib/app/chat.ex +++ b/shard/lib/app/chat.ex @@ -141,6 +141,11 @@ defmodule SApp.Chat do end end + def handle_cast(:send_deps, state) do + GenServer.cast(Shard.Manager, {:dep_list, state.id, []}) + {:noreply, state} + end + def handle_cast(:mark_read, state) do state = %{state | read: state.mst.root} save_state(state) |