mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-06 10:30:31 +08:00
9 lines
223 B
Ruby
9 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
|