api :POST, '/implants.json', 'Add implants to the users account'
param_group :implant
def create
implant = current_user.implants.new implant_params
unless implant.save
return render json: implant.errors, status: :unprocessable_entity
end
end