mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-08 15:18:58 +08:00
20 lines
356 B
Ruby
20 lines
356 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "./opengraph_image"
|
|
|
|
module Onebox
|
|
module Engine
|
|
class FlickrShortenedOnebox
|
|
include Engine
|
|
include StandardEmbed
|
|
include OpengraphImage
|
|
|
|
matches_domain("flic.kr")
|
|
always_https
|
|
|
|
def self.matches_path(path)
|
|
path.start_with?("/p/")
|
|
end
|
|
end
|
|
end
|
|
end
|