-
-
Save shankardevy/bc8576c693decc30da1890669c0dd70b 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.PageController do | |
use MangoWeb, :controller | |
alias Mango.Catalog | |
def index(conn, _params) do | |
seasonal_products = Catalog.list_seasonal_products | |
render conn, "index.html", seasonal_products: seasonal_products | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment