summaryrefslogtreecommitdiff
path: root/lib/web/controllers/network_controller.ex
blob: 07cc291180f87d6d7c10ff221c26cf3d3fca21e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
defmodule NolaWeb.NetworkController do
  use NolaWeb, :controller
  plug(NolaWeb.ContextPlug)

  def index(conn, %{"network" => network}) do
    conn
    |> assign(:title, network)
    |> render("index.html")
  end
end