diff options
author | Byron Jones <glob@mozilla.com> | 2016-04-13 17:57:50 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2016-04-13 18:00:08 +0200 |
commit | 197afbecb29bbc96f88c4868541a19172d86e485 (patch) | |
tree | 8633d4328553f1bad5620bfbbe26468a2466be30 /Bugzilla/BugUrl | |
parent | 33f61556746e1729746342d802ca7ea9cea18caf (diff) | |
download | bugzilla-197afbecb29bbc96f88c4868541a19172d86e485.tar.gz bugzilla-197afbecb29bbc96f88c4868541a19172d86e485.tar.xz |
Bug 1264207 - add support for the hellosplat tracker to 'see also'
Diffstat (limited to 'Bugzilla/BugUrl')
-rw-r--r-- | Bugzilla/BugUrl/Splat.pm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Bugzilla/BugUrl/Splat.pm b/Bugzilla/BugUrl/Splat.pm new file mode 100644 index 000000000..42918f0d4 --- /dev/null +++ b/Bugzilla/BugUrl/Splat.pm @@ -0,0 +1,24 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +# This Source Code Form is "Incompatible With Secondary Licenses", as +# defined by the Mozilla Public License, v. 2.0. + +package Bugzilla::BugUrl::Splat; +use strict; +use base qw(Bugzilla::BugUrl); + +sub should_handle { + my ($class, $uri) = @_; + return $uri =~ m#^https?://hellosplat\.com/s/beanbag/tickets/\d+#; +} + +sub _check_value { + my ($class, $uri) = @_; + $uri = $class->SUPER::_check_value($uri); + $uri->scheme('https'); # force https + return $uri; +} + +1; |