mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-07-01 12:02:16 +00:00
10 lines
223 B
Ruby
10 lines
223 B
Ruby
|
# 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
|