Skip to content

Instantly share code, notes, and snippets.

@shankardevy
Last active August 22, 2017 12:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shankardevy/5672a5aece779878b72faafe596ae724 to your computer and use it in GitHub Desktop.
Save shankardevy/5672a5aece779878b72faafe596ae724 to your computer and use it in GitHub Desktop.
defmodule MangoWeb.Router do
use MangoWeb, :router
pipeline :browser do
plug :accepts, ["html"]
plug :fetch_session
plug :fetch_flash
plug :protect_from_forgery
plug :put_secure_browser_headers
end
pipeline :frontend do
plug MangoWeb.Plugs.LoadCustomer
plug MangoWeb.Plugs.FetchCart
end
pipeline :api do
plug :accepts, ["json"]
end
scope "/", MangoWeb do
pipe_through [:browser, :frontend]
# Add all routes that don't require authentication
get "/login", SessionController, :new
post "/login", SessionController, :create
get "/register", RegistrationController, :new
post "/register", RegistrationController, :create
get "/", PageController, :index
get "/categories/:name", CategoryController, :show
get "/cart", CartController, :show
post "/cart", CartController, :add
put "/cart", CartController, :update
end
scope "/", MangoWeb do
pipe_through [:browser, :frontend, MangoWeb.Plugs.AuthenticateCustomer]
# Add all routes that do require authentication
get "/logout", SessionController, :delete
get "/checkout", CheckoutController, :edit
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment