mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-02-16 03:30:05 -05:00
11 lines
153 B
Ruby
11 lines
153 B
Ruby
class GapSerializer < ApplicationSerializer
|
|
attributes :before, :after
|
|
|
|
def before
|
|
@object.before
|
|
end
|
|
|
|
def after
|
|
@object.after
|
|
end
|
|
end
|