Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3001e85715 | ||
|
|
f4125cc37c | ||
|
|
a3408d9852 | ||
|
|
0048423a46 | ||
|
|
2468e4d5b6 |
@@ -3,6 +3,12 @@ when@prod:
|
|||||||
register_error_listener: true # Disables the ErrorListener to avoid duplicated log in sentry
|
register_error_listener: true # Disables the ErrorListener to avoid duplicated log in sentry
|
||||||
register_error_handler: true # Disables the ErrorListener, ExceptionListener and FatalErrorListener integrations of the base PHP SDK
|
register_error_handler: true # Disables the ErrorListener, ExceptionListener and FatalErrorListener integrations of the base PHP SDK
|
||||||
|
|
||||||
|
options:
|
||||||
|
release: '%app.version%'
|
||||||
|
traces_sample_rate: 1
|
||||||
|
profiles_sample_rate: 1
|
||||||
|
attach_stacktrace: true
|
||||||
|
|
||||||
tracing:
|
tracing:
|
||||||
enabled: true
|
enabled: true
|
||||||
dbal: # DB queries
|
dbal: # DB queries
|
||||||
|
|||||||
@@ -3,14 +3,14 @@
|
|||||||
imdb-id="{{ monitor.imdbId }}"
|
imdb-id="{{ monitor.imdbId }}"
|
||||||
media-title="{{ monitor.title }}"
|
media-title="{{ monitor.title }}"
|
||||||
season="{{ monitor.season }}"
|
season="{{ monitor.season }}"
|
||||||
episode="{{ monitor.episode }}"
|
episode="{{ monitor.episode ?? '-' }}"
|
||||||
status="{{ monitor.status }}"
|
status="{{ monitor.status }}"
|
||||||
search-count="{{ monitor.searchCount }}"
|
search-count="{{ monitor.searchCount }}"
|
||||||
media-type="{{ monitor.monitorType|monitor_type }}"
|
media-type="{{ monitor.monitorType|monitor_type }}"
|
||||||
episode-id="{{ monitor|monitor_media_id }}"
|
episode-id="{{ monitor|monitor_media_id }}"
|
||||||
created-at="{{ monitor.createdAt|date('m/d/Y g:i a') }}"
|
created-at="{{ monitor.createdAt|date('m/d/Y g:i a') }}"
|
||||||
last-search="{{ monitor.lastSearch|date('m/d/Y g:i a') }}"
|
last-search="{{ monitor.lastSearch|date('m/d/Y g:i a') }}"
|
||||||
downloaded-at="{{ monitor.downloadedAt|date('m/d/Y g:i a') }}"
|
downloaded-at="{{null != monitor.downloadedAt ? monitor.downloadedAt|date('m/d/Y g:i a') : '-' }}"
|
||||||
>
|
>
|
||||||
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-stone-800 truncate">
|
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-stone-800 truncate">
|
||||||
<a href="{{ path('app_search_result', {imdbId: monitor.imdbId, mediaType: monitor.monitorType|as_download_type}) }}"
|
<a href="{{ path('app_search_result', {imdbId: monitor.imdbId, mediaType: monitor.monitorType|as_download_type}) }}"
|
||||||
|
|||||||
Reference in New Issue
Block a user