mirror of https://github.com/pixelfed/pixelfed
Update AppRegister controller, add scheduled cleanup task to delete older than 90d
parent
3977137d02
commit
c319dfbcc4
@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace App\Console\Commands;
|
||||
|
||||
use App\Models\AppRegister;
|
||||
use Illuminate\Console\Command;
|
||||
|
||||
class CleanupExpiredAppRegistrations extends Command
|
||||
{
|
||||
/**
|
||||
* The name and signature of the console command.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'app:cleanup-expired-app-registrations';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $description = 'Command description';
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*/
|
||||
public function handle()
|
||||
{
|
||||
AppRegister::where('created_at', '<', now()->subDays(90))->delete();
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue