Packages

This is a CMS written in Elixir. Aims to be the great open-source ecommerce and/or startup solution for those who are searching for a performance and stability on top of modern technologies like React and Elixir.

Current section

Files

Jump to
lyn web controllers user_controller.ex
Raw

web/controllers/user_controller.ex

defmodule Lyn.UserController do
use Lyn.Web, :controller
alias Lyn.Repo
alias Lyn.User
alias Lyn.Authorization
def new(conn, params, current_user, _claims) do
render conn, "new.html", current_user: current_user
end
end