This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-03-15 23:12:48 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 20:09:25 +02:00
|
|
|
class Api::V1::InstancesController < Api::BaseController
|
2019-10-06 22:11:29 +02:00
|
|
|
skip_before_action :require_authenticated_user!, unless: :whitelist_mode?
|
2023-04-25 22:14:44 +02:00
|
|
|
skip_around_action :set_locale
|
2017-03-15 23:12:48 +01:00
|
|
|
|
2023-04-25 15:41:34 +02:00
|
|
|
vary_by ''
|
|
|
|
|
2023-04-25 22:14:44 +02:00
|
|
|
# Override `current_user` to avoid reading session cookies unless in whitelist mode
|
|
|
|
def current_user
|
|
|
|
super if whitelist_mode?
|
|
|
|
end
|
|
|
|
|
2017-07-07 04:02:06 +02:00
|
|
|
def show
|
2023-04-25 15:41:34 +02:00
|
|
|
cache_even_if_authenticated!
|
2022-10-05 03:47:56 +02:00
|
|
|
render_with_cache json: InstancePresenter.new, serializer: REST::V1::InstanceSerializer, root: 'instance'
|
2017-07-07 04:02:06 +02:00
|
|
|
end
|
2017-03-15 23:12:48 +01:00
|
|
|
end
|