1217361b6c
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
46 lines
1.3 KiB
Elixir
46 lines
1.3 KiB
Elixir
defmodule EventosWeb.CategoryController do
|
|
@moduledoc """
|
|
Controller for Categories
|
|
"""
|
|
use EventosWeb, :controller
|
|
|
|
alias Eventos.Events
|
|
alias Eventos.Events.Category
|
|
|
|
action_fallback EventosWeb.FallbackController
|
|
|
|
def index(conn, _params) do
|
|
categories = Events.list_categories()
|
|
render(conn, "index.json", categories: categories)
|
|
end
|
|
|
|
def create(conn, %{"category" => category_params}) do
|
|
with {:ok, %Category{} = category} <- Events.create_category(category_params) do
|
|
conn
|
|
|> put_status(:created)
|
|
|> put_resp_header("location", category_path(conn, :show, category))
|
|
|> render("show.json", category: category)
|
|
end
|
|
end
|
|
|
|
def show(conn, %{"id" => id}) do
|
|
category = Events.get_category!(id)
|
|
render(conn, "show.json", category: category)
|
|
end
|
|
|
|
def update(conn, %{"id" => id, "category" => category_params}) do
|
|
category = Events.get_category!(id)
|
|
|
|
with {:ok, %Category{} = category} <- Events.update_category(category, category_params) do
|
|
render(conn, "show.json", category: category)
|
|
end
|
|
end
|
|
|
|
def delete(conn, %{"id" => id}) do
|
|
category = Events.get_category!(id)
|
|
with {:ok, %Category{}} <- Events.delete_category(category) do
|
|
send_resp(conn, :no_content, "")
|
|
end
|
|
end
|
|
end
|