mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
8 lines
184 B
Ruby
8 lines
184 B
Ruby
module Api
|
|
class RailsFlashSerializer < ActiveModel::Serializer
|
|
attributes :info, :success, :error, :notice
|
|
|
|
delegate :info, :success, :error, :notice, to: :object
|
|
end
|
|
end
|