pinakes-core: add markdown link storage methods

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I5fa9fd045711664e5dcc7f1c12b6ca896a6a6964
This commit is contained in:
raf 2026-02-09 13:13:52 +03:00
commit 27be136e01
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
3 changed files with 27 additions and 16 deletions

View file

@ -6092,7 +6092,10 @@ impl StorageBackend for PostgresBackend {
Ok(())
}
async fn get_outgoing_links(&self, media_id: MediaId) -> Result<Vec<crate::model::MarkdownLink>> {
async fn get_outgoing_links(
&self,
media_id: MediaId,
) -> Result<Vec<crate::model::MarkdownLink>> {
let client = self
.pool
.get()