Method
sendControlledRoomAuthStatus
(self, success, username, roomname)
Source from the content-addressed store, hash-verified
| 607 | }) |
| 608 | |
| 609 | def sendControlledRoomAuthStatus(self, success, username, roomname): |
| 610 | self.sendSet({ |
| 611 | "controllerAuth": { |
| 612 | "user": username, |
| 613 | "room": roomname, |
| 614 | "success": success |
| 615 | } |
| 616 | }) |
| 617 | |
| 618 | def sendSetReady(self, username, isReady, manuallyInitiated=True, setByUsername=None): |
| 619 | if setByUsername: |
Callers
nothing calls this directly
Tested by
no test coverage detected