The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

13 rader
240 B

  1. #!/bin/bash
  2. THISDIR=$(cd $(dirname ${0}) && pwd)
  3. DOCURL=${THISDIR}/docurl
  4. DO_OUTPUT=${1}
  5. if [[ -z "${DO_OUTPUT}" ]] ; then
  6. ${DOCURL} "images?private=true" | jq .
  7. else
  8. ${DOCURL} "images?private=true" | jq -r .images[].${DO_OUTPUT}
  9. fi