edits for PR

This commit is contained in:
akemi 2022-11-29 15:59:36 -05:00
parent 39e06a8856
commit 55f5e7866d
3 changed files with 7 additions and 7 deletions

View file

@ -492,7 +492,7 @@ class UsersController extends Controller
}
/**
* Notify a specific user via email with all of his assigned assets.
* Notify a specific user via email with all of their assigned assets.
*
* @author [Lukas Fehling] [<lukas.fehling@adabay.rocks>]
* @since [v6.0.13]
@ -505,10 +505,10 @@ class UsersController extends Controller
$user = User::findOrFail($id);
if (empty($user->email)) {
return response()->json(Helper::formatStandardApiResponse(error, $accessory, trans('admin/accessories/message.inventorynotification.error')));
return response()->json(Helper::formatStandardApiResponse(error, null, trans('admin/users/message.inventorynotification.error')));
}
return response()->Helper::formatStandardApiResponse('success', $accessory, trans('admin/accessories/message.inventorynotification.success'));
return response()->Helper::formatStandardApiResponse('success', null, trans('admin/users/message.inventorynotification.success'));
}

View file

@ -33,10 +33,6 @@ return array(
'user_does_not_exist' => 'That user is invalid. Please try again.'
),
'inventorynotification' => array(
'error' => 'This user has no email set.',
'success' => 'The user has been notified about their current inventory.'
)
);

View file

@ -59,4 +59,8 @@ return array(
'invalidfiles' => 'One or more of your files is too large or is a filetype that is not allowed. Allowed filetypes are png, gif, jpg, doc, docx, pdf, and txt.',
),
'inventorynotification' => array(
'error' => 'This user has no email set.',
'success' => 'The user has been notified about their current inventory.'
)
);