mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
14 lines
214 B
Ruby
14 lines
214 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class BaseSerializer
|
|
include JSONAPI::Serializer
|
|
|
|
def self.url_helpers
|
|
Rails.application.routes.url_helpers
|
|
end
|
|
end
|
|
end
|
|
end
|