Enforce SAML assertion ID uniqueness and notValidOnOrAfter attribute

This commit is contained in:
Brady Wetherington
2024-01-25 19:53:24 +00:00
parent 7668a6767d
commit 81b8243e1d
6 changed files with 110 additions and 3 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class SamlNonce extends Model
{
use HasFactory;
protected $fillable = ['nonce','not_on_or_after'];
public $timestamps = false;
}