blob: 800294f0f0d74bfeea2a8d8ead57cda7d7520d59 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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
|