({ launchId })
| 56 | } |
| 57 | |
| 58 | async cancelTrip({ launchId }) { |
| 59 | const userId = this.context.user.id; |
| 60 | return !!this.store.trips.destroy({ where: { userId, launchId } }); |
| 61 | } |
| 62 | |
| 63 | async getLaunchIdsByUser() { |
| 64 | const userId = this.context.user.id; |
no outgoing calls
no test coverage detected