2017-03-16 09:12:48 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-08 04:09:25 +10:00
|
|
|
class Api::V1::InstancesController < Api::BaseController
|
2023-08-03 03:32:48 +10:00
|
|
|
skip_before_action :require_authenticated_user!, unless: :limited_federation_mode?
|
2023-04-26 06:14:44 +10:00
|
|
|
skip_around_action :set_locale
|
2017-03-16 09:12:48 +11:00
|
|
|
|
2023-04-25 23:41:34 +10:00
|
|
|
vary_by ''
|
|
|
|
|
2023-04-26 06:14:44 +10:00
|
|
|
# Override `current_user` to avoid reading session cookies unless in whitelist mode
|
|
|
|
def current_user
|
2023-08-03 03:32:48 +10:00
|
|
|
super if limited_federation_mode?
|
2023-04-26 06:14:44 +10:00
|
|
|
end
|
|
|
|
|
2017-07-07 12:02:06 +10:00
|
|
|
def show
|
2023-04-25 23:41:34 +10:00
|
|
|
cache_even_if_authenticated!
|
2022-10-05 12:47:56 +11:00
|
|
|
render_with_cache json: InstancePresenter.new, serializer: REST::V1::InstanceSerializer, root: 'instance'
|
2017-07-07 12:02:06 +10:00
|
|
|
end
|
2017-03-16 09:12:48 +11:00
|
|
|
end
|