about summary refs log tree commit diff
path: root/app/serializers/rest/filter_keyword_serializer.rb
blob: dd2ebac6eae9b9a4e733750e48d40f24d56e2a12 (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class REST::FilterKeywordSerializer < ActiveModel::Serializer
  attributes :id, :keyword, :whole_word

  def id
    object.id.to_s
  end
end