(session, project_string_id)
| 36 | Auth_api.client_id == client_id).first() |
| 37 | |
| 38 | def list_by_project(session, project_string_id): |
| 39 | return session.query(Auth_api).filter( |
| 40 | Auth_api.project_string_id == project_string_id, |
| 41 | Auth_api.is_valid == True |
| 42 | ).all() |
| 43 | |
| 44 | def serialize_with_secret(self): |
| 45 | return { |
no outgoing calls
no test coverage detected