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