Fix admin entity decoration

This commit is contained in:
2024-03-29 13:48:24 +11:00
parent 1364d78f29
commit 59f42c235c
8 changed files with 370 additions and 6 deletions

View File

@@ -16,7 +16,7 @@ module Admin
expose :posts do |trip|
post_repo.created_between(trip.start_date, trip.end_date).map do |post|
Adamantium::Decorators::Posts::Decorator.new(post)
Admin::Decorators::Posts::Decorator.new(post)
end
end
end