Enables commenting on the project. You can only use this function if this object was created using :meth:`scratchattach.session.Session.connect_project`
(self)
| 601 | self.set_fields(data) |
| 602 | |
| 603 | def turn_on_commenting(self): |
| 604 | """ |
| 605 | Enables commenting on the project. You can only use this function if this object was created using :meth:`scratchattach.session.Session.connect_project` |
| 606 | """ |
| 607 | data = {"comments_allowed": True} |
| 608 | self.set_fields(data) |
| 609 | |
| 610 | def toggle_commenting(self): |
| 611 | """ |
nothing calls this directly
no test coverage detected