(self, session)
| 402 | self.gen_initial_dir_list) |
| 403 | |
| 404 | def refresh_label_dict(self, session): |
| 405 | |
| 406 | file_list = WorkingDirFileLink.file_list( |
| 407 | session = session, |
| 408 | working_dir_id = self.directory_default_id, |
| 409 | limit = 10000000, |
| 410 | type = "label", |
| 411 | exclude_removed = False) # eg for permissions |
| 412 | if not self.label_dict: |
| 413 | self.label_dict = {} |
| 414 | self.label_dict['label_file_id_list'] = [file.id for file in file_list] |
| 415 | |
| 416 | def serialize(self, |
| 417 | session = None): |
no test coverage detected