This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2019-09-29 21:31:51 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module WellKnown
|
2023-04-19 16:07:29 +02:00
|
|
|
class NodeInfoController < ActionController::Base # rubocop:disable Rails/ApplicationController
|
2019-09-29 21:31:51 +02:00
|
|
|
include CacheConcern
|
|
|
|
|
|
|
|
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
|