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