Sha256: 9b2705d0dc92999a20456ade285f1ab9e4c545a352802652bfb282ed1d97b65e

Contents?: true

Size: 1.2 KB

Versions: 15

Compression:

Stored size: 1.2 KB

Contents

#
# ishapi / reports / show
#

params.permit!
key = [ @report, params ]
json.cache! key do
  json.report do
    json.id          @report.id.to_s
    json.name        @report.name
    json.reportname  @report.slug
    if @report.photo
      json.photo_url   @report.photo.photo.url( :small ) 
      json.thumb_url   @report.photo.photo.url( :thumb )
    end

    # @TODO: move this to meta
    json.created_at  @report.created_at
    json.updated_at  @report.updated_at
    json.username    @report.user_profile.name if @report.user_profile
    json.cityname    @report.city.cityname if @report.city
    json.subhead     @report.subhead
    json.description @report.descr
  
    if @report.photo
      json.photo do
        json.thumb_url @report.photo.photo.url :thumb
        json.small_url @report.photo.photo.url :small
        json.large_url @report.photo.photo.url :large
      end
    end

    json.partial! 'ishapi/tags/index',   :tags   => @report.tags
  end

  # @deprecated, but specs use this _vp_ 20180423
  if @report.photo
    json.photo do
      json.thumb_url @report.photo.photo.url :thumb
      json.small_url @report.photo.photo.url :small
      json.large_url @report.photo.photo.url :large
    end
  end
  
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
ishapi-0.1.8.171 app/views/ishapi/reports/show.jbuilder
ishapi-0.1.8.169 app/views/ishapi/reports/show.jbuilder
ishapi-0.1.8.168 app/views/ishapi/reports/show.jbuilder
ishapi-0.1.8.167 app/views/ishapi/reports/show.jbuilder
ishapi-0.1.8.166 app/views/ishapi/reports/show.jbuilder
ishapi-0.1.8.165 app/views/ishapi/reports/show.jbuilder
ishapi-0.1.8.164 app/views/ishapi/reports/show.jbuilder
ishapi-0.1.8.162 app/views/ishapi/reports/show.jbuilder
ishapi-0.1.8.161 app/views/ishapi/reports/show.jbuilder
ishapi-0.1.8.160 app/views/ishapi/reports/show.jbuilder
ishapi-0.1.8.159 app/views/ishapi/reports/show.jbuilder
ishapi-0.1.8.158 app/views/ishapi/reports/show.jbuilder
ishapi-0.1.8.157 app/views/ishapi/reports/show.jbuilder
ishapi-0.1.8.156 app/views/ishapi/reports/show.jbuilder
ishapi-0.1.8.155 app/views/ishapi/reports/show.jbuilder