mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 17:28:55 +00:00
30 lines
853 B
PHP
30 lines
853 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Invitation Expiration Default
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Default Expiry time in Hours from current time.
|
|
| i.e now() + expires (hours)
|
|
|
|
|
*/
|
|
'expires' => 48,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| User Model
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
'UserModel' => 'App\Models\User',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Invitation Model
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
'InvitationModel' => 'Junaidnasir\Larainvite\Models\LaraInviteModel',
|
|
];
|