Get using project_string
(session, project_string_id)
| 678 | |
| 679 | @staticmethod |
| 680 | def get(session, project_string_id): |
| 681 | """ |
| 682 | Get using project_string |
| 683 | """ |
| 684 | return session.query(Project).filter( |
| 685 | Project.project_string_id == project_string_id).first() |
| 686 | |
| 687 | @staticmethod |
| 688 | def get_users_current_project(session): |
no outgoing calls
no test coverage detected