67ef32432e
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
48 lines
1.3 KiB
Elixir
48 lines
1.3 KiB
Elixir
defmodule EventosWeb.GroupController do
|
|
@moduledoc """
|
|
Controller for Groups
|
|
"""
|
|
use EventosWeb, :controller
|
|
|
|
alias Eventos.Groups
|
|
alias Eventos.Groups.Group
|
|
|
|
action_fallback EventosWeb.FallbackController
|
|
|
|
def index(conn, _params) do
|
|
groups = Groups.list_groups()
|
|
render(conn, "index.json", groups: groups)
|
|
end
|
|
|
|
def create(conn, %{"group" => group_params}) do
|
|
group_params = Map.put(group_params, "uri", "h")
|
|
group_params = Map.put(group_params, "url", "h")
|
|
with {:ok, %Group{} = group} <- Groups.create_group(group_params) do
|
|
conn
|
|
|> put_status(:created)
|
|
|> put_resp_header("location", group_path(conn, :show, group))
|
|
|> render("show_simple.json", group: group)
|
|
end
|
|
end
|
|
|
|
def show(conn, %{"id" => id}) do
|
|
group = Groups.get_group_full!(id)
|
|
render(conn, "show.json", group: group)
|
|
end
|
|
|
|
def update(conn, %{"id" => id, "group" => group_params}) do
|
|
group = Groups.get_group!(id)
|
|
|
|
with {:ok, %Group{} = group} <- Groups.update_group(group, group_params) do
|
|
render(conn, "show_simple.json", group: group)
|
|
end
|
|
end
|
|
|
|
def delete(conn, %{"id" => id}) do
|
|
group = Groups.get_group!(id)
|
|
with {:ok, %Group{}} <- Groups.delete_group(group) do
|
|
send_resp(conn, :no_content, "")
|
|
end
|
|
end
|
|
end
|