GroupConstructor.js 372 B

123456789101112131415161718192021
  1. class GroupConstructor {
  2. constructor(
  3. group,
  4. projects,
  5. members,
  6. commit,
  7. interface_test,
  8. pipeline
  9. ) {
  10. this.group = group;
  11. this.projects = projects;
  12. this.members = members;
  13. this.commit = commit;
  14. this.test = {
  15. "interface-test": interface_test
  16. };
  17. this.pipeline = pipeline;
  18. }
  19. }
  20. module.exports = GroupConstructor;