mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:07:53 +08:00
79427732b2
Conflicts: app/assets/javascripts/discourse/templates/topic.js.handlebars
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
|