Saves all the collected docs.
(self, **kw)
| 138 | self.docs.append(doc) |
| 139 | |
| 140 | def commit(self, **kw) -> None: |
| 141 | """Saves all the collected docs.""" |
| 142 | if self.docs: |
| 143 | web.ctx.site.save_many(self.docs, **kw) |
| 144 | |
| 145 | def create_authors_from_form_data(self, authors: list[dict], author_names: list[str], _test: bool = False) -> bool: |
| 146 | """ |
no test coverage detected