Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728293031
  1. class User {
  2. constructor(id) {
  3. this.user_id = id
  4. this.user_name = ''
  5. this.user_email = ''
  6. // TODO: user_media
  7. // this.user_media = ''
  8. this.is_admin = false
  9. this.is_poster = false
  10. }
  11. }
  12. class Profile {
  13. constructor(id, override) {
  14. this.user_id = override?.user_id ? override.user_id : id
  15. this.profile_id = override?.profile_id ? override.profile_id + id : id
  16. }
  17. }
  18. class Response {
  19. constructor(id) {
  20. this.response_id = id
  21. this.profile_id = null
  22. this.response_key_id = null
  23. this.val = null
  24. }
  25. }
  26. module.exports = {
  27. User,
  28. Profile,
  29. Response,
  30. }