
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
- can't send emails
i explored the docs and it says Messaging.CreateEmail() but this function does not exist , i installed appwrite on next js env everything works fine except thi...
- Messaging via Resend: "to": "\"undisclos...
I'm using the node-appwrite@18.0.0 SDK. ``` await messaging.createEmail({ messageId: ID.unique(), subject: "Subject", content: `htmlCont...
- unexpected row_invalid_structure error
In images you can see both my code,error, column schema I do have timezone in table schema but still while creating a row i am receving row_invalid_structure e...
