Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. export function fetchFlightById(flightId) {
  2. return {
  3. [REST_CALL]: {
  4. type: FETCH_FLIGHT_BY_ID,
  5. endpoint: `${Path.api}/api/v5/getflightbyId`,
  6. params: {
  7. flightId
  8. },
  9. method: 'GET'
  10. }
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement