
hello i got a small question, is this code secured, is there something that should not be displayed on the client, i am talking about the image tag:
my code:
TypeScript
<script lang="ts">
let { data } = $props();
</script>
{#each data.databaseData.documents as pet}
<div class="pet">
<p>title: {pet.title}</p>
<p>description: {pet.description}</p>
<p>by: {pet.by}</p>
<img
src="https://cloud.appwrite.io/v1/storage/buckets/67eab74a000065af9767/files/{pet.image}/view?project=67eaa8b10009d8a195f3&mode=admin"
alt={pet.image}
/>
</div>
{/each}
TL;DR

i feel like the project=67eaa8b10009d8a195f3 and buckets/67eab74a000065af9767 shouldnt be displayed or im just wrong, also what is this mode=admin
Recommended threads
- 503 Timeout when Updating or Upserting D...
Hey I’m running into an issue when trying to update or upsert a row in Appwrite. The request hangs for a while and then throws this error: ``` AppwriteException...
- Row with the requested ID already exists...
I’m hitting a blocking issue creating rows in Appwrite (both from the console and my React Native app). After successfully inserting the first row, every subseq...
- Looking for Partner
I'm looking for partner for long-term collaborating. Of course, I'll pay for you. If you are interested, Please DM me.
