mozilla/publish.webmaker.org

View on GitHub
api/modules/publishedProjects/cache.js

Summary

Maintainability
A
50 mins
Test Coverage
"use strict";

const ExportCache = require(`../../classes/base_export_cache`);

class ExportPublishedProjectCache extends ExportCache {
  constructor(server) {
    super(server, `published project`, `exportpublishedproject`);
  }

  get name() {
    return `exportPublishedProject`;
  }
}

module.exports = {
  ExportPublishedProjectCache
};