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