Files
adamantium/slices/admin/repos/book_repo.rb

14 lines
218 B
Ruby

module Admin
module Repos
class BookRepo < Adamantium::Repo[:posts]
commands update: :by_pk
def list_all
posts
.where(post_type: "book")
.to_a
end
end
end
end