1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-12 10:02:49 +00:00

switch from yarn to npm - other minor updates

This commit is contained in:
2018-04-30 20:13:13 -05:00
parent 0b6522f5f2
commit ac7d913e30
10 changed files with 16196 additions and 6767 deletions

View File

@@ -50,10 +50,8 @@ defmodule MyAppWeb.ReplyController do
@spec mod_update(map, map) :: any
def mod_update(conn, params) do
{:ok, _} = Data.Reply.mod_update(params)
conn
|> put_status(200)
|> Response.json("ok")
Data.Reply.mod_update(params)
Response.json(conn, "ok")
end
end