mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 06:23:43 +08:00
16 lines
324 B
Ruby
16 lines
324 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "../mixins/twitch_onebox"
|
|
|
|
class Onebox::Engine::TwitchStreamOnebox
|
|
def self.twitch_regexp
|
|
/^https?:\/\/(?:www\.|go\.)?twitch\.tv\/(?!directory)([a-zA-Z0-9_]{4,25})$/
|
|
end
|
|
|
|
include Onebox::Mixins::TwitchOnebox
|
|
|
|
def query_params
|
|
"channel=#{twitch_id}"
|
|
end
|
|
end
|