index.js 860 B

123456789101112131415161718192021222324252627282930
  1. import {Company} from "./schemas/Company"
  2. import {EduTextbook} from "./schemas/EduTextbook"
  3. import {Profile} from "./schemas/Profile"
  4. import {EduCollection} from "./schemas/EduCollection"
  5. import {_User} from "./schemas/_User"
  6. import {_Role} from "./schemas/_Role"
  7. import {_Session} from "./schemas/_Session"
  8. import {Submitted} from "./schemas/Submitted"
  9. import {EduProcess} from "./schemas/EduProcess"
  10. import { Department } from "./schemas/Department"
  11. import { EduReview } from "./schemas/EduReview"
  12. import { Activity } from "./schemas/Activity"
  13. import { ExpertGroup } from "./schemas/ExpertGroup"
  14. export const EduSchemas = [
  15. _User,
  16. _Role,
  17. // _Session,
  18. Company,
  19. EduTextbook,
  20. Profile,
  21. EduCollection,
  22. Submitted,
  23. EduProcess,
  24. Department,
  25. EduReview,
  26. Activity,
  27. ExpertGroup
  28. ]
  29. module.exports.EduSchemas = EduSchemas