2020-09-10 17:43:58 +00:00
|
|
|
<?php
|
|
|
|
|
2020-10-10 16:30:26 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2020 Miguel Nogueira
|
|
|
|
*
|
|
|
|
* This file is part of Raspberry Staff Manager.
|
|
|
|
*
|
|
|
|
* Raspberry Staff Manager is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Raspberry Staff Manager is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Raspberry Staff Manager. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2020-09-10 17:43:58 +00:00
|
|
|
return [
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Auth Model
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| This is the Auth model used by Teamwork.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
'user_model' => config('auth.providers.users.model', App\User::class),
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Teamwork users Table
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| This is the users table name used by Teamwork.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
'users_table' => 'users',
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Teamwork Team Model
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| This is the Team model used by Teamwork to create correct relations. Update
|
|
|
|
| the team if it is in a different namespace.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
'team_model' => Mpociot\Teamwork\TeamworkTeam::class,
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Teamwork teams Table
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| This is the teams table name used by Teamwork to save teams to the database.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
'teams_table' => 'teams',
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Teamwork team_user Table
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| This is the team_user table used by Teamwork to save assigned teams to the
|
|
|
|
| database.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
'team_user_table' => 'team_user',
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| User Foreign key on Teamwork's team_user Table (Pivot)
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
'user_foreign_key' => 'id',
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Teamwork Team Invite Model
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| This is the Team Invite model used by Teamwork to create correct relations.
|
|
|
|
| Update the team if it is in a different namespace.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
'invite_model' => Mpociot\Teamwork\TeamInvite::class,
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Teamwork team invites Table
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| This is the team invites table name used by Teamwork to save sent/pending
|
|
|
|
| invitation into teams to the database.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
'team_invites_table' => 'team_invites',
|
|
|
|
];
|