update view_count
This commit is contained in:
parent
0fd7e69981
commit
1cbe055361
|
@ -19,7 +19,8 @@ class AnnouncementsController < ApplicationController
|
|||
"link_to_show" => OrbitHelper.url_to_show(a.to_param),
|
||||
"img_src" => a.image.thumb.url || "http://placehold.it/100x100",
|
||||
"img_description" => a.image_description,
|
||||
"more" => t(:more_plus)
|
||||
"more" => t(:more_plus),
|
||||
"view_count" => a.view_count
|
||||
}
|
||||
end
|
||||
{
|
||||
|
@ -33,7 +34,7 @@ class AnnouncementsController < ApplicationController
|
|||
"category-head" => t('announcement.table.category')
|
||||
},
|
||||
"total_pages" => announcements.total_pages
|
||||
}
|
||||
}
|
||||
|
||||
end
|
||||
|
||||
|
@ -68,9 +69,9 @@ class AnnouncementsController < ApplicationController
|
|||
"subtitle-head" => t('announcement.table.sub_title'),
|
||||
"category-head" => t('announcement.table.category')
|
||||
}
|
||||
}
|
||||
}
|
||||
end
|
||||
|
||||
|
||||
def show
|
||||
params = OrbitHelper.params
|
||||
announcement = Bulletin.can_display.find_by(:uid=>params[:uid])
|
||||
|
@ -103,7 +104,7 @@ class AnnouncementsController < ApplicationController
|
|||
},
|
||||
"impressionist" => (announcement.is_preview ? nil : announcement),
|
||||
"url_to_edit"=>url_to_edit
|
||||
}
|
||||
}
|
||||
end
|
||||
|
||||
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue