Skip to content

Commit

Permalink
make the module disabled by default
Browse files Browse the repository at this point in the history
  • Loading branch information
proditis committed Nov 5, 2024
1 parent cfddb84 commit 5be7415
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ public function safeUp()
$this->upsert('url_route', ['source' => 'speed', 'destination' => 'speedprogramming/default/index'], true);
$this->upsert('url_route', ['source' => 'speed/<id:\d+>', 'destination' => 'speedprogramming/default/view'], true);
$this->upsert('url_route', ['source' => 'speed/<id:\d+>/answer', 'destination' => 'speedprogramming/default/answer'], true);
$this->upsert('sysconfig', ['id' => 'module_speedprogramming_disabled', 'val' => 1], true);
}

/**
Expand Down

0 comments on commit 5be7415

Please sign in to comment.