mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			81 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| declare(strict_types = 1);
 | |
| 
 | |
| 
 | |
| /**
 | |
|  * This file is part of Entrust,
 | |
|  * a role & permission management solution for Laravel.
 | |
|  *
 | |
|  * @license MIT
 | |
|  * @package Zizaco\Entrust
 | |
|  */
 | |
| 
 | |
| return [
 | |
| 
 | |
|     /*
 | |
|     |--------------------------------------------------------------------------
 | |
|     | Entrust Role Model
 | |
|     |--------------------------------------------------------------------------
 | |
|     |
 | |
|     | This is the Role model used by Entrust to create correct relations.  Update
 | |
|     | the role if it is in a different namespace.
 | |
|     |
 | |
|     */
 | |
|     'role'                  => 'FireflyIII\Models\Role',
 | |
| 
 | |
|     /*
 | |
|     |--------------------------------------------------------------------------
 | |
|     | Entrust Roles Table
 | |
|     |--------------------------------------------------------------------------
 | |
|     |
 | |
|     | This is the roles table used by Entrust to save roles to the database.
 | |
|     |
 | |
|     */
 | |
|     'roles_table'           => 'roles',
 | |
| 
 | |
|     /*
 | |
|     |--------------------------------------------------------------------------
 | |
|     | Entrust Permission Model
 | |
|     |--------------------------------------------------------------------------
 | |
|     |
 | |
|     | This is the Permission model used by Entrust to create correct relations.
 | |
|     | Update the permission if it is in a different namespace.
 | |
|     |
 | |
|     */
 | |
|     'permission'            => 'FireflyIII\Models\Permission',
 | |
| 
 | |
|     /*
 | |
|     |--------------------------------------------------------------------------
 | |
|     | Entrust Permissions Table
 | |
|     |--------------------------------------------------------------------------
 | |
|     |
 | |
|     | This is the permissions table used by Entrust to save permissions to the
 | |
|     | database.
 | |
|     |
 | |
|     */
 | |
|     'permissions_table'     => 'permissions',
 | |
| 
 | |
|     /*
 | |
|     |--------------------------------------------------------------------------
 | |
|     | Entrust permission_role Table
 | |
|     |--------------------------------------------------------------------------
 | |
|     |
 | |
|     | This is the permission_role table used by Entrust to save relationship
 | |
|     | between permissions and roles to the database.
 | |
|     |
 | |
|     */
 | |
|     'permission_role_table' => 'permission_role',
 | |
| 
 | |
|     /*
 | |
|     |--------------------------------------------------------------------------
 | |
|     | Entrust role_user Table
 | |
|     |--------------------------------------------------------------------------
 | |
|     |
 | |
|     | This is the role_user table used by Entrust to save assigned roles to the
 | |
|     | database.
 | |
|     |
 | |
|     */
 | |
|     'role_user_table'       => 'role_user',
 | |
| 
 | |
| ];
 |