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