module Admin module Repos class BookmarkRepo < Adamantium::Repo[:posts] def list posts .where(post_type: "bookmark") .to_a end def fetch(id:) posts.where(id: id).one end def delete(id:) posts.where(id: id).delete end def update(id:, cached_content:) posts.where(id: id).update(cached_content: cached_content) end end end end