mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-16 22:21:51 +00:00
21 lines
544 B
TypeScript
21 lines
544 B
TypeScript
import { getRepository, Repository } from "typeorm";
|
|
import { ArchiveEntry } from "./entities/ArchiveEntry";
|
|
import { BaseRepository } from "./BaseRepository";
|
|
|
|
export class Archives extends BaseRepository {
|
|
protected archives: Repository<ArchiveEntry>;
|
|
|
|
constructor() {
|
|
super();
|
|
this.archives = getRepository(ArchiveEntry);
|
|
}
|
|
|
|
public deleteExpiredArchives() {
|
|
this.archives
|
|
.createQueryBuilder()
|
|
.andWhere("expires_at IS NOT NULL")
|
|
.andWhere("expires_at <= NOW()")
|
|
.delete()
|
|
.execute();
|
|
}
|
|
}
|