mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 07:34:18 +08:00
12 lines
153 B
Ruby
12 lines
153 B
Ruby
|
class GapSerializer < ApplicationSerializer
|
||
|
attributes :before, :after
|
||
|
|
||
|
def before
|
||
|
@object.before
|
||
|
end
|
||
|
|
||
|
def after
|
||
|
@object.after
|
||
|
end
|
||
|
end
|