Separated silence and suspend counts

The count data is now separated by specific action rather than grouping everything together.

This gives a clearer picture of the severity of a response by current sources
develop
Ro 12 months ago
parent 1c904e5e51
commit 8a513c3f2c
Signed by: are0h
GPG Key ID: 29B551CDBD4D3B50

@ -4,10 +4,12 @@ namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Location extends Model class Location extends Model
{ {
use HasFactory; use HasFactory;
use SoftDeletes;
/** /**
* The table associated with the model. * The table associated with the model.
@ -29,6 +31,7 @@ class Location extends Model
"added_by", "added_by",
"tags", "tags",
"block_count", "block_count",
"silence_count",
"created_at", "created_at",
"updated_at" "updated_at"
]; ];

Loading…
Cancel
Save