1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-06 19:29:51 +00:00

12 lines
153 B
Ruby
Raw Normal View History

class GapSerializer < ApplicationSerializer
attributes :before, :after
def before
@object.before
end
def after
@object.after
end
end