Skip to content

Commit

Permalink
[stacked 1] Prepare flag for photo processing by pipes (LycheeOrg#2363)
Browse files Browse the repository at this point in the history
  • Loading branch information
ildyria committed Apr 11, 2024
1 parent 7529a66 commit a887a5f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/.env.mariadb
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,5 @@ DB_LIST_FOREIGN_KEYS=true
CACHE_DRIVER=array
SESSION_DRIVER=array
QUEUE_CONNECTION=sync

PHOTO_PIPES=true
11 changes: 10 additions & 1 deletion config/features.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,17 @@
|--------------------------------------------------------------------------
| Log Viewer
|--------------------------------------------------------------------------
| Log Viewer can be disabled, so it's no longer accessible via browser.
|
| Log Viewer can be disabled, so it's no longer accessible via browser.
*/
'log-viewer' => (bool) env('LOG_VIEWER_ENABLED', true),

/*
|--------------------------------------------------------------------------
| Use new code path when importing photos
|--------------------------------------------------------------------------
|
| Use pipeline design pattern instead of hardcoded Strategies.
*/
'create-photo-via-pipes' => (bool) env('PHOTO_PIPES', false),
];

0 comments on commit a887a5f

Please sign in to comment.