diff options
author | Guillermo Ramos | 2020-02-04 16:06:14 +0100 |
---|---|---|
committer | Guillermo Ramos | 2020-02-04 16:06:14 +0100 |
commit | 4c399821684fa38b0d52b03932d7856b569478ab (patch) | |
tree | 1fdb87156f181c1936cedaa6783dd9acf2475df6 /lib/waev_web/controllers | |
parent | 1566a2fcba0676cf54dde2b04702a320d9f1edcd (diff) | |
download | waev-4c399821684fa38b0d52b03932d7856b569478ab.tar.gz |
Exports (WIP)
Diffstat (limited to 'lib/waev_web/controllers')
-rw-r--r-- | lib/waev_web/controllers/exports_controller.ex | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/waev_web/controllers/exports_controller.ex b/lib/waev_web/controllers/exports_controller.ex new file mode 100644 index 0000000..a50896e --- /dev/null +++ b/lib/waev_web/controllers/exports_controller.ex @@ -0,0 +1,7 @@ +defmodule WaevWeb.ExportsController do + use WaevWeb, :controller + + def show(conn, %{"id" => id}) do + render(conn, "show.html", id: id) + end +end |