You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class Post < ActiveRecord::Base; end
class PostDecorator < ApplicationDecorator
decorates :post
def image
h.image_tag model.image_url
end
end
Then the following is possible
ActiveAdmin.register Post do
decorate_with PostDecorator
index do
column(:title)
column(:image)
end
show do
attributes_table do
row(:title)
row(:image)
end
end
end