mozilla/publish.webmaker.org

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

Summary

Maintainability
A
50 mins
Test Coverage
"use strict";

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

class ExportProjectCache extends ExportCache {
  constructor(server) {
    super(server, `project`, `exportproject`);
  }

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

module.exports = {
  ExportProjectCache
};