You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/app/serializers/asciicast_serializer.rb

33 lines
513 B
Ruby

class AsciicastSerializer < ActiveModel::Serializer
self.root = false
attributes :id, :duration, :stdout_frames_url, :snapshot
attribute :terminal_columns, key: :width
attribute :terminal_lines, key: :height
def id
object.to_param
end
def private?
object.private?
end
def title
object.title
end
def author_display_name
object.user.display_name
end
def author_url
object.user.url
end
def author_avatar_url
object.user.avatar_url(object.user)
end
end