Initial implementation of new task mgmt system 👮

This commit is contained in:
Dane Everitt
2017-09-09 23:55:21 -05:00
parent f157c06d04
commit bab28dbc85
31 changed files with 1535 additions and 132 deletions

15
config/hashids.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Hashids Configuration
|--------------------------------------------------------------------------
|
| Here are the settings that control the Hashids setup and usage in the panel.
|
*/
'salt' => env('HASHIDS_SALT'),
'length' => env('HASHIDS_LENGTH', 8),
'alphabet' => env('HASHIDS_ALPHABET', 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890'),
];