-
Hi everyone, as it was mentioned in #3579, attachments being publicly accessible is a bug and supposed to be fixed. I'm curious as to when, as my files are still accessible by anyone. Or did I miss where to set permissions? Also I'm having issues with the links to the attachments. I'm using the repeater block (data {{ repeater.table.attachment }}) for displaying links ({{ repeaterblock.attachment.url }}) to the attachments. It generates the syntax ...myserver/app/start#/prod-budi-app-assets/app_4a97fc30ea25466..., but they actually sit at This makes them not accessible via my links. The links in the table builder, and if I place a table on my screens for example, work fine. Thanks a lot! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
Hi Sebastian. I will followup on this one. Regarding your binding issue. The URL returned from the binding is a relative one In order to get this to work, your binding will need to be |
Beta Was this translation helpful? Give feedback.
Hi Sebastian.
I will followup on this one.
Regarding your binding issue. The URL returned from the binding is a relative one
/prod-budi-app-assets/app_4a97fc30ea25466...
meaning that your browser will automatically prepend the current domain or path to it.In order to get this to work, your binding will need to be
https://myserver{{ repeaterblock.attachment.0.url }}
(I also added.0.url
in there as I think you need that too).