Version 0.7.0 #1

Merged
kor-elf merged 90 commits from develop into main 2023-12-08 21:18:23 +06:00
2 changed files with 11 additions and 0 deletions
Showing only changes of commit 8ccbd5000d - Show all commits

View File

@ -4,6 +4,7 @@ namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\SoftDeletes;
@ -36,4 +37,9 @@ final class CaptchaToken extends Model
{
return $this->hasMany(Captcha::class);
}
public function user(): BelongsTo
{
return $this->belongsTo(User::class);
}
}

View File

@ -5,6 +5,7 @@ namespace App\Services\Private;
use App\Dto\Builder\CaptchaToken as CaptchaTokenDto;
use App\Dto\QuerySettingsDto;
use App\Dto\Request\Private\CaptchaToken\StoreUpdate;
use App\Helpers\Helpers;
use App\Models\User;
use App\Models\CaptchaToken;
use App\Repositories\CaptchaTokenRepository;
@ -133,6 +134,10 @@ final class CaptchaTokenService extends Service
return $this->errFobidden(__('Access is denied'));
}
if (Helpers::isDemoModeAndUserDenyUpdate($modelCaptchaToken->user)) {
return $this->errValidate(__('Demo Mode'));
}
try {
DB::transaction(function () use ($modelCaptchaToken) {
$this->captchaTokenHandler->handleDestroy($modelCaptchaToken);