about summary refs log tree commit diff
path: root/lib/rook_web/controllers/app_controller.ex
blob: 9e36f3c9c41d6ecd7deba4e7fb2217251608f7d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
defmodule RookWeb.AppController do
  use RookWeb, :controller

  def share(conn, _params) do
    render(conn, "share.html")
  end

  def request(conn, _params) do
    render(conn, "request.html")
  end
end