summaryrefslogtreecommitdiff
path: root/client/js/models/comment_list.js
blob: bae2d7a3d01ac3841e1b754b5b512d55989c3b9c (plain)
1
2
3
4
5
6
7
8
9
10
11
"use strict";

const AbstractList = require("./abstract_list.js");
const Comment = require("./comment.js");

class CommentList extends AbstractList {}

CommentList._itemClass = Comment;
CommentList._itemName = "comment";

module.exports = CommentList;