berrypod/lib/berrypod_web/controllers/admin_controller.ex

8 lines
155 B
Elixir
Raw Normal View History

defmodule BerrypodWeb.AdminController do
use BerrypodWeb, :controller
def index(conn, _params) do
redirect(conn, to: ~p"/admin/orders")
end
end