Skip to content

Commit

Permalink
Make date seed configurable, default to 1 second interval
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkwinkelmann committed Mar 18, 2021
1 parent a0f00b2 commit fd31541
Show file tree
Hide file tree
Showing 12 changed files with 107 additions and 7 deletions.
6 changes: 4 additions & 2 deletions extend.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@

return [
(new Extend\Frontend('admin'))
->js(__DIR__ . '/js/dist/admin.js'),
->js(__DIR__ . '/js/dist/admin.js')
->css(__DIR__ . '/resources/less/admin.less'),
(new Extend\Frontend('forum'))
->js(__DIR__ . '/js/dist/forum.js'),
->js(__DIR__ . '/js/dist/forum.js')
->css(__DIR__ . '/resources/less/forum.less'),
(new Extend\Routes('api'))
->post('/fake-data', 'migratetoflarum-fake-data', Controllers\FakeDataController::class),
new Extend\Locales(__DIR__ . '/resources/locale'),
Expand Down
2 changes: 1 addition & 1 deletion js/dist/admin.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion js/dist/admin.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/dist/forum.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit fd31541

Please sign in to comment.