From a6288eef0d9ccb4481bb04afb47ed5709ae14b47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Gaya?= <sebastien.gaya@gmail.com> Date: Tue, 9 Nov 2021 16:53:03 +0100 Subject: [PATCH] new data media directory --- app/models/communication/website/with_media.rb | 2 +- app/views/active_storage/blobs/jekyll.html.erb | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/app/models/communication/website/with_media.rb b/app/models/communication/website/with_media.rb index 032f22aec..4ec63e11d 100644 --- a/app/models/communication/website/with_media.rb +++ b/app/models/communication/website/with_media.rb @@ -7,7 +7,7 @@ module Communication::Website::WithMedia end def blob_github_path_generated(blob) - "_media/#{blob.id[0..1]}/#{blob.id}.md" + "_data/media/#{blob.id[0..1]}/#{blob.id}.yml" end def blob_to_jekyll(blob) diff --git a/app/views/active_storage/blobs/jekyll.html.erb b/app/views/active_storage/blobs/jekyll.html.erb index e314b22bd..a095edb68 100644 --- a/app/views/active_storage/blobs/jekyll.html.erb +++ b/app/views/active_storage/blobs/jekyll.html.erb @@ -2,7 +2,6 @@ width, height = @blob.metadata.values_at('width', 'height') ratio = width.present? && height.present? ? (width.to_f / height.to_f) : nil %> ---- name: <%= @blob.filename.to_s %> size: <%= @blob.byte_size %> <% if width.present? %>width: <%= width %><% end %> @@ -10,4 +9,3 @@ size: <%= @blob.byte_size %> <% if ratio.present? %>ratio: <%= ratio %><% end %> <%# TODO: Replace with the media endpoint when it's ready %> url: <%= @blob.url %> ---- -- GitLab