Sha256: 8cdbfa9bcbf9e0ae41e4001c52f5f1898faf8275763ba70de9350ad073cd01c6
Contents?: true
Size: 293 Bytes
Versions: 114
Compression:
Stored size: 293 Bytes
Contents
require_dependency "ishapi/application_controller" class Ishapi::PhotosController < Ishapi::ApplicationController # before_action :soft_check_long_term_token, only: [ :show ] before_action :check_jwt def show @photo = Photo.find params[:id] authorize! :show, @photo end end
Version data entries
114 entries across 114 versions & 1 rubygems