blob: 537c2f663d5735264c632eb3fbae56238e7ec625 (
plain) (
tree)
|
|
defmodule LSGWeb.NetworkController do
use LSGWeb, :controller
plug LSGWeb.ContextPlug
def index(conn, %{"network" => network}) do
conn
|> assign(:title, network)
|> render("index.html")
end
end
|