entries.js 448 B

12345678910111213
  1. // TODO: This file was created by bulk-decaffeinate.
  2. // Sanity-check the conversion and remove this comment.
  3. /*
  4. * decaffeinate suggestions:
  5. * DS206: Consider reworking classes to avoid initClass
  6. * Full docs: https://github.com/decaffeinate/decaffeinate/blob/main/docs/suggestions.md
  7. */
  8. app.collections.Entries = class Entries extends app.Collection {
  9. static initClass() {
  10. this.model = "Entry";
  11. }
  12. };
  13. app.collections.Entries.initClass();