|
|
@ -1,13 +1,3 @@
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
|
|
|
|
// Sanity-check the conversion and remove this comment.
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
|
|
|
|
* DS206: Consider reworking classes to avoid initClass
|
|
|
|
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/main/docs/suggestions.md
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
app.collections.Entries = class Entries extends app.Collection {
|
|
|
|
app.collections.Entries = class Entries extends app.Collection {
|
|
|
|
static initClass() {
|
|
|
|
static model = "Entry";
|
|
|
|
this.model = "Entry";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
app.collections.Entries.initClass();
|
|
|
|
|
|
|
|