mirror of
https://github.com/diaspora/diaspora.git
synced 2026-04-29 03:01:03 -04:00
11 lines
208 B
Ruby
11 lines
208 B
Ruby
# frozen_string_literal: true
|
|
|
|
class LikesPresenter < BasePresenter
|
|
def as_api_json
|
|
{
|
|
guid: @presentable.guid,
|
|
author: PersonPresenter.new(@presentable.author).as_api_json
|
|
}
|
|
end
|
|
end
|