Skip to content

Commit

Permalink
Add more irrigation time in delayed startup zones, Add fallback to RE…
Browse files Browse the repository at this point in the history
…GISTRATION_OPEN on when missing BACKPACK_REGISTRATION_OPEN in .env.local
  • Loading branch information
lejubila committed Apr 6, 2020
1 parent 954599c commit b1fe0b4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
## 0.4.4.2 - 05/0402020
## 0.4.4.3 - 06/040/2020
- Add more irrigation time in delayed startup zones
- Add fallback to REGISTRATION_OPEN on when missing BACKPACK_REGISTRATION_OPEN in .env.local

## 0.4.4.2 - 05/040/2020
- Add more irrigation time in delayed startup zones
- Add missing lines in .env.example

Expand Down
2 changes: 1 addition & 1 deletion config/backpack/base.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
| By default the registration is open only on localhost.
*/

'registration_open' => env('BACKPACK_REGISTRATION_OPEN', env('APP_ENV') === 'local'),
'registration_open' => env('BACKPACK_REGISTRATION_OPEN', env('REGISTRATION_OPEN', env('APP_ENV') === 'local')),

/*
|--------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion config/pigarden.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

'cron_in' => [
'start' => [ 0, 5, 15, 30, 60, 120, 180, 240, 300, 600 ],
'length' => [ 1, 2, 3, 4, 5, 6, 7, 9, 10, 15, 20, 30, 60, 120, 180, 240, 300 ]
'length' => [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, 30, 60, 120, 180, 240, 300 ]
],

'timeout_json_dashboard_status' => env('PIGARDEN_TIMEOUT_DASHBOARD_STATUS', 20000),
Expand Down

0 comments on commit b1fe0b4

Please sign in to comment.