The code powering m.abunchtell.com https://m.abunchtell.com
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011
  1. # frozen_string_literal: true
  2. class ManifestsController < ApplicationController
  3. skip_before_action :store_current_location
  4. skip_before_action :require_functional!
  5. def show
  6. expires_in 3.minutes, public: true
  7. render json: InstancePresenter.new, serializer: ManifestSerializer, root: 'instance'
  8. end
  9. end