mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 23:42:59 +08:00
10 lines
149 B
Ruby
10 lines
149 B
Ruby
![]() |
# frozen_string_literal: true
|
||
|
|
||
|
class PublishedPageSerializer < ApplicationSerializer
|
||
|
attributes :id, :slug
|
||
|
|
||
|
def id
|
||
|
object.topic_id
|
||
|
end
|
||
|
end
|