
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:
<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}

i feel like the project=67eaa8b10009d8a195f3 and buckets/67eab74a000065af9767 shouldnt be displayed or im just wrong, also what is this mode=admin
Recommended threads
- Document already existed
Hi, I am trying to add a document via cloud function using nodejs22. Everytime I do `await db.createDocument( dbid, collectionid, customDocId, data);` it will g...
- Image Transformation Issue
My project was working with images normally, I never processed them or anything, and today, suddenly when trying to add or update images from the project, it st...
- easiest way to ban an IP from appwrite
for example, lets say that i have an app where people can post cars, and someone is constantly spamming my app with trucks, is there a way to ban that user IP s...
