The code powering m.abunchtell.com https://m.abunchtell.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

12 行
318 B

  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