The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

do_list_images.sh 388 B

1234567891011121314
  1. #!/bin/bash
  2. #
  3. # Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
  4. #
  5. THISDIR=$(cd $(dirname ${0}) && pwd)
  6. DOCURL=${THISDIR}/docurl
  7. DO_OUTPUT=${1}
  8. if [[ -z "${DO_OUTPUT}" ]] ; then
  9. ${DOCURL} "images?private=true" | jq .
  10. else
  11. ${DOCURL} "images?private=true" | jq -r .images[].${DO_OUTPUT}
  12. fi