mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-28 07:19:11 +08:00
9 lines
223 B
Ruby
Vendored
9 lines
223 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
class AiArtifactKeyValueSerializer < ApplicationSerializer
|
|
attributes :id, :key, :value, :public, :user_id, :created_at, :updated_at
|
|
|
|
def include_value?
|
|
!options[:keys_only]
|
|
end
|
|
end
|