mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-24 05:04:07 -08:00
A few slack fixes
1) Missing $admin_user in AccessoriesController::postCheckout(). Fixes #2183 2) AssetsController::postCheckin used the hardware url for the user link, not the user url
This commit is contained in:
parent
6165d804f9
commit
f004facb06
|
@ -322,6 +322,7 @@ class AccessoriesController extends Controller
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
$admin_user = Auth::user();
|
||||||
$settings = Setting::getSettings();
|
$settings = Setting::getSettings();
|
||||||
|
|
||||||
if ($settings->slack_endpoint) {
|
if ($settings->slack_endpoint) {
|
||||||
|
|
|
@ -611,7 +611,7 @@ class AssetsController extends Controller
|
||||||
'fields' => [
|
'fields' => [
|
||||||
[
|
[
|
||||||
'title' => 'Checked In:',
|
'title' => 'Checked In:',
|
||||||
'value' => strtoupper($logaction->asset_type).' asset <'.config('app.url').'/hardware/'.$asset->id.'/view'.'|'.e($asset->showAssetName()).'> checked in by <'.config('app.url').'/hardware/'.$asset->id.'/view'.'|'.e(Auth::user()->fullName()).'>.'
|
'value' => strtoupper($logaction->asset_type).' asset <'.config('app.url').'/hardware/'.$asset->id.'/view'.'|'.e($asset->showAssetName()).'> checked in by <'.config('app.url').'/admin/users/'.Auth::user()->id.'/view'.'|'.e(Auth::user()->fullName()).'>.'
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
'title' => 'Note:',
|
'title' => 'Note:',
|
||||||
|
|
Loading…
Reference in a new issue