X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/5573df77417e3cf0199d9275afefca68e396c71f..c073f15f5c775d00f3628c74a8bc048a2f1e6980:/app/controllers/diary_entries_controller.rb diff --git a/app/controllers/diary_entries_controller.rb b/app/controllers/diary_entries_controller.rb index 1f47e2588..ff6dfc826 100644 --- a/app/controllers/diary_entries_controller.rb +++ b/app/controllers/diary_entries_controller.rb @@ -60,6 +60,8 @@ class DiaryEntriesController < ApplicationController @params = params.permit(:display_name, :friends, :nearby, :language) @entries, @newer_entries_id, @older_entries_id = get_page_items(entries, :includes => [:user, :language]) + + render :partial => "page" if turbo_frame_request_id == "pagination" end def show @@ -70,7 +72,9 @@ class DiaryEntriesController < ApplicationController @title = t ".title", :user => params[:display_name], :title => @entry.title @opengraph_properties = { "og:image" => @entry.body.image, - "og:image:alt" => @entry.body.image_alt + "og:image:alt" => @entry.body.image_alt, + "og:description" => @entry.body.description, + "article:published_time" => @entry.created_at.xmlschema } @comments = can?(:unhide, DiaryComment) ? @entry.comments : @entry.visible_comments else