not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
352 B

  1. module.exports=
  2. {
  3. /**
  4. * Returns a random word
  5. * @returns {string}
  6. */
  7. roomOpen : function(name, rooms)
  8. {
  9. return true;
  10. },
  11. userAvailable : function(name, rooms)
  12. {
  13. return true;
  14. },
  15. exists: function(name, rooms)
  16. {
  17. }
  18. };