You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
598 B
20 lines
598 B
# frozen_string_literal: true
|
|
|
|
module WellKnown
|
|
class NodeInfoController < ActionController::Base
|
|
include CacheConcern
|
|
|
|
before_action { response.headers['Vary'] = 'Accept' }
|
|
|
|
def index
|
|
expires_in 3.days, public: true
|
|
render_with_cache json: {}, serializer: NodeInfo::DiscoverySerializer, adapter: NodeInfo::Adapter, expires_in: 3.days, root: 'nodeinfo'
|
|
end
|
|
|
|
def show
|
|
expires_in 30.minutes, public: true
|
|
render_with_cache json: {}, serializer: NodeInfo::Serializer, adapter: NodeInfo::Adapter, expires_in: 30.minutes, root: 'nodeinfo'
|
|
end
|
|
end
|
|
end
|