Is there any method defined that lists all the uploads of a post or tell us which post upload belongs to? I see there are relations defined in Post model
But it is hardly used. If I upload an image to a post, it updates the “raw” field in Post to determine the uploads. There is no direct relationship. Why PostUpload is not used?
Ah thanks, I think I found the problem. keep_reverse_index_up_to_date uses a/@href value to determine upload. I’m currently using a plugin for private attachments, that doesn’t store absolute url of attachments in a/@href. I may need to overwrite keep_reverse_index_up_to_date. Thanks anyways