This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/serializers/published_page_serializer.rb
2020-06-17 12:42:20 +02:00

10 lines
158 B
Ruby

# frozen_string_literal: true
class PublishedPageSerializer < ApplicationSerializer
attributes :id, :slug, :public
def id
object.topic_id
end
end