remove old js code

This commit is contained in:
odweta
2026-08-13 13:19:19 +02:00
parent 7ae0781430
commit 691a34a08a
-23
View File
@@ -1,23 +0,0 @@
// class Ticket {
// constructor(
// id,
// title,
// description,
// status,
// created_at,
// updated_at
// ) {
// this.id = id;
// this.title = title;
// this.description = description;
// this.status = status;
// this.created_at = created_at;
// this.updated_at = updated_at;
// }
// }
// var tickets = [
// new Ticket(0, "ticket 1", "some desc", Status.CLOSED, 1786438392, 1786438393),
// new Ticket(1, "ticket 2", "some other desc", Status.OPEN, 1786438394, 1786438395),
// new Ticket(2, "ticket 3", "some third desc", Status.OPEN, 1786438396, 1786438397)
// ];