mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-22 22:36:11 +08:00
16 lines
295 B
Ruby
Vendored
16 lines
295 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
require_relative "./opengraph_image"
|
|
|
|
module Onebox
|
|
module Engine
|
|
class FlickrShortenedOnebox
|
|
include Engine
|
|
include StandardEmbed
|
|
include OpengraphImage
|
|
|
|
matches_regexp(%r{^https?://flic\.kr/p/})
|
|
always_https
|
|
end
|
|
end
|
|
end
|