mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-11 18:26:50 +00:00
14 lines
359 B
Ruby
14 lines
359 B
Ruby
# frozen_string_literal: true
|
|
|
|
class WellKnownController < ApplicationController
|
|
layout nil
|
|
|
|
def dfc
|
|
base = "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/scopes.rdf#"
|
|
render json: {
|
|
"#{base}ReadEnterprise" => "/api/dfc/enterprises/",
|
|
"#{base}ReadProducts" => "/api/dfc/supplied_products/",
|
|
}
|
|
end
|
|
end
|