Skip to content

Instantly share code, notes, and snippets.

@shankardevy
Last active August 18, 2017 05:41
Show Gist options
  • Save shankardevy/601299bb1c9cb8d165aab568aea2aa97 to your computer and use it in GitHub Desktop.
Save shankardevy/601299bb1c9cb8d165aab568aea2aa97 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 :api do
plug :accepts, ["json"]
end
scope "/", MangoWeb do
pipe_through :browser # Use the default browser stack
get "/", PageController, :index
get "/categories/:name", CategoryController, :show
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment