2024-12-01 18:43:28 +00:00
|
|
|
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
|
2024-12-28 18:37:47 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2024-12-01 19:42:25 +01:00
|
|
|
class CaptchaController < ApplicationController
|
|
|
|
skip_before_action :authenticate_user!
|
2024-12-07 12:43:08 +01:00
|
|
|
skip_before_action :set_tenant
|
2024-12-01 19:42:25 +01:00
|
|
|
def create
|
2024-12-28 18:19:58 +01:00
|
|
|
id = LibreCaptcha.new.id
|
2024-12-01 19:42:25 +01:00
|
|
|
render json: {
|
|
|
|
id:,
|
|
|
|
media_url: media_captcha_index_url(id:)
|
|
|
|
}, status: :created
|
|
|
|
end
|
|
|
|
end
|