-
-
Save shankardevy/45b13cce106af3c5a8677eb66975c297 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule MangoWeb.CategoryController do | |
use MangoWeb, :controller | |
alias Mango.Catalog | |
def show(conn, _params) do | |
products = Catalog.list_products | |
conn | |
|> assign(:products, products) | |
|> assign(:name, "Title") | |
|> render("show.html") | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment