Initial commit

This commit is contained in:
Developer
2025-04-21 16:03:20 +02:00
commit 2832896157
22874 changed files with 3092801 additions and 0 deletions

View File

@@ -0,0 +1,107 @@
<?php
namespace App\Policies;
use App\Domain\Complaints\Models\Complaint;
use App\Models\User;
use Illuminate\Auth\Access\HandlesAuthorization;
class ComplaintPolicy
{
use HandlesAuthorization;
public function before(User $user)
{
if ($user->hasRole('administrators')) {
return true;
}
}
/**
* Determine whether the user can view any models.
*
* @param \App\Models\User $user
* @return mixed
*/
public function viewAny(User $user)
{
if ($user->hasRole('moderator')) {
return true;
}
}
/**
* Determine whether the user can view the model.
*
* @param \App\Models\User $user
* @param \App\Models\Complaint $complaint
* @return mixed
*/
public function view(User $user, Complaint $complaint)
{
if ($user->hasRole('moderator')) {
return true;
}
}
/**
* Determine whether the user can create models.
*
* @param \App\Models\User $user
* @return mixed
*/
public function create(User $user)
{
return false;
}
/**
* Determine whether the user can update the model.
*
* @param \App\Models\User $user
* @param \App\Models\Complaint $complaint
* @return mixed
*/
public function update(User $user, Complaint $complaint)
{
if ($user->hasRole('moderator')) {
return true;
}
}
/**
* Determine whether the user can delete the model.
*
* @param \App\Models\User $user
* @param \App\Models\Complaint $complaint
* @return mixed
*/
public function delete(User $user, Complaint $complaint)
{
return false;
}
/**
* Determine whether the user can restore the model.
*
* @param \App\Models\User $user
* @param \App\Models\Complaint $complaint
* @return mixed
*/
public function restore(User $user, Complaint $complaint)
{
//
}
/**
* Determine whether the user can permanently delete the model.
*
* @param \App\Models\User $user
* @param \App\Models\Complaint $complaint
* @return mixed
*/
public function forceDelete(User $user, Complaint $complaint)
{
//
}
}