Merge branch 'dillon/34.8-jenkins-vapor' into vapor/development

This commit is contained in:
Dillon Ngo
2024-11-05 02:42:45 +08:00
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -157,7 +157,7 @@ return [
'secret' => env('AWS_CW_SECRET')
]
],
'retention' => 31,
'retention' => env('APP_ENV') === 'production' ? 90 : 6,
'level' => 'debug',
'groupNamePrefix' => env('CLOUDWATCH_LOGGROUP_PREFIX'),
],
@@ -211,7 +211,7 @@ return [
'secret' => env('AWS_CW_SECRET')
]
],
'retention' => 31,
'retention' => env('APP_ENV') === 'production' ? 90 : 6,
'level' => 'debug',
'groupNamePrefix' => env('CLOUDWATCH_LOGGROUP_PREFIX'),
],
@@ -229,7 +229,7 @@ return [
'secret' => env('AWS_CW_SECRET')
]
],
'retention' => 31,
'retention' => env('APP_ENV') === 'production' ? 90 : 6,
'level' => 'debug',
'groupNamePrefix' => env('CLOUDWATCH_LOGGROUP_PREFIX'),
],
@@ -247,7 +247,7 @@ return [
'secret' => env('AWS_CW_SECRET')
]
],
'retention' => 31,
'retention' => env('APP_ENV') === 'production' ? 90 : 6,
'level' => 'debug',
'groupNamePrefix' => env('CLOUDWATCH_LOGGROUP_PREFIX'),
],
@@ -100,7 +100,7 @@
<file-input-component :validator="$v.files" v-model="files">
<template slot="label">
<div class="font-heading fs-11 text-primary all-caps">Import PURCHASE ORDER CSV</div>
<div class="font-heading fs-9 all-caps muted text-underline"><a href="/template/import-po-template.xlsx" class="muted" download>Click here to download the template</a></div>
<div class="font-heading fs-9 all-caps muted text-underline"><a :href="asset('template/import-po-template.xlsx')" class="muted" download>Click here to download the template</a></div>
</template>
</file-input-component>
</div>