@edools/epm
Version:
Edools apps management tool
18 lines (14 loc) • 387 B
JavaScript
import { ThemeClient } from '../../clients';
class Theme {
constructor (config) {
this.id = config.id;
this.package_url = config.package_url;
this.client = new ThemeClient(config);
this.schooljs_version = config.dependencies.bamboo;
}
deploy (dependencies) {
this.dependencies = dependencies;
return this.client.update(this);
}
}
export default Theme;