philomena/lib/philomena_web/controllers/captcha_controller.ex

11 lines
241 B
Elixir
Raw Normal View History

2019-11-13 17:28:02 +01: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
end