philomena/lib/philomena_web/controllers/captcha_controller.ex

12 lines
242 B
Elixir
Raw Normal View History

2019-11-13 11:28:02 -05:00
defmodule PhilomenaWeb.CaptchaController do
use PhilomenaWeb, :controller
alias Philomena.Captcha
def create(conn, _params) do
captcha = Captcha.create()
render(conn, "create.html", captcha: captcha, layout: false)
end
2020-01-10 23:20:19 -05:00
end