X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/5f4ae358140bbfce2c5648a556aeb7a55f89536e..2b7a48029bff06c190544f91c5969b09aeae552b:/app/controllers/diary_entries_controller.rb diff --git a/app/controllers/diary_entries_controller.rb b/app/controllers/diary_entries_controller.rb index a8fc41808..5f39a0886 100644 --- a/app/controllers/diary_entries_controller.rb +++ b/app/controllers/diary_entries_controller.rb @@ -28,7 +28,7 @@ class DiaryEntriesController < ApplicationController end elsif params[:friends] if current_user - @title = t ".title_friends" + @title = t ".title_followed" entries = DiaryEntry.where(:user => current_user.friends) else require_user @@ -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 @@ -69,9 +71,11 @@ class DiaryEntriesController < ApplicationController if @entry @title = t ".title", :user => params[:display_name], :title => @entry.title @opengraph_properties = { + "og:title" => @entry.title, "og:image" => @entry.body.image, "og:image:alt" => @entry.body.image_alt, - "og:description" => @entry.body.description + "og:description" => @entry.body.description, + "article:published_time" => @entry.created_at.xmlschema } @comments = can?(:unhide, DiaryComment) ? @entry.comments : @entry.visible_comments else @@ -119,7 +123,7 @@ class DiaryEntriesController < ApplicationController # Subscribe user to diary comments @diary_entry.subscriptions.create(:user => current_user) - redirect_to :action => "index", :display_name => current_user.display_name + redirect_to diary_entry_path(@diary_entry.user, @diary_entry) else render :action => "new" end