2024-11-30 18:14:58 +00:00
|
|
|
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
|
2024-12-28 18:37:47 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2024-12-28 18:28:28 +01:00
|
|
|
module Users
|
|
|
|
class ConfirmationsController < Devise::ConfirmationsController
|
|
|
|
clear_respond_to
|
|
|
|
respond_to :json
|
2024-11-30 18:46:25 +01:00
|
|
|
|
2024-12-28 18:28:28 +01:00
|
|
|
def show
|
|
|
|
super do |resource|
|
|
|
|
if resource.errors.empty?
|
|
|
|
respond_to do |format|
|
|
|
|
format.json { render json: resource, status: :ok }
|
|
|
|
format.any { redirect_to root_path }
|
|
|
|
end
|
|
|
|
else
|
|
|
|
render json: {
|
|
|
|
message: 'Record invalid',
|
|
|
|
errors: resource.errors.full_messages
|
|
|
|
}, status: :unprocessable_entity
|
2024-11-30 19:09:04 +01:00
|
|
|
end
|
2024-12-28 18:28:28 +01:00
|
|
|
return
|
2024-11-30 18:46:25 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2024-12-28 18:28:28 +01:00
|
|
|
end
|