1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-30 19:52:20 +01:00

fix variable name error

This commit is contained in:
Du Peng 2022-06-27 15:23:38 +02:00 committed by Sylvain
parent 9f7504dfe9
commit 35cc5ed149

View File

@ -28,7 +28,7 @@ class API::ProofOfIdentityTypesController < API::ApiController
if @proof_of_identity_type.update(proof_of_identity_type_params)
render status: :ok
else
render json: @pack.errors.full_messages, status: :unprocessable_entity
render json: @proof_of_identity_type.errors.full_messages, status: :unprocessable_entity
end
end