Skip to content

Commit

Permalink
Add 10 min and 30 min to update interval dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
mtift committed Jul 10, 2020
1 parent 38f52d6 commit 17a4638
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion npr_pull/src/Form/NprPullConfigForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public function buildForm(array $form, FormStateInterface $form_state) {
'#return_value' => TRUE,
];

$interval_options = [1, 3600, 10800, 21600, 43200, 86400, 604800];
$interval_options = [1, 600, 1800, 3600, 10800, 21600, 43200, 86400, 604800];
$form['queue_interval'] = [
'#type' => 'select',
'#title' => $this->t('Queue builder update interval'),
Expand Down

0 comments on commit 17a4638

Please sign in to comment.