mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 00:02:15 +00:00
implementation of user limits and refactoring
This commit is contained in:
19
src/App/Users/Models/UserLimitation.php
Normal file
19
src/App/Users/Models/UserLimitation.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
namespace App\Users\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class UserLimitation extends Model
|
||||
{
|
||||
public $timestamps = false;
|
||||
|
||||
protected $guarded = [];
|
||||
|
||||
protected $hidden = [
|
||||
'user_id',
|
||||
];
|
||||
|
||||
public $incrementing = false;
|
||||
|
||||
protected $keyType = 'string';
|
||||
}
|
||||
Reference in New Issue
Block a user