summaryrefslogtreecommitdiffstats
path: root/Bugzilla/BugUrl
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2016-01-06 16:13:27 +0100
committerByron Jones <glob@mozilla.com>2016-01-06 16:13:27 +0100
commit93919407f0e7e7a638d9e3c36640bd2f78d77367 (patch)
tree86aabc057e02a43e9f91ca23c66d6bd51c0cbd8f /Bugzilla/BugUrl
parentead96aee04bbc8a470e572948190d8781ebf5290 (diff)
downloadbugzilla-93919407f0e7e7a638d9e3c36640bd2f78d77367.tar.gz
bugzilla-93919407f0e7e7a638d9e3c36640bd2f78d77367.tar.xz
Bug 1237188 - add support for servicenow to the 'see also' field
Diffstat (limited to 'Bugzilla/BugUrl')
-rw-r--r--Bugzilla/BugUrl/ServiceNow.pm24
1 files changed, 24 insertions, 0 deletions
diff --git a/Bugzilla/BugUrl/ServiceNow.pm b/Bugzilla/BugUrl/ServiceNow.pm
new file mode 100644
index 000000000..b73f56a00
--- /dev/null
+++ b/Bugzilla/BugUrl/ServiceNow.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::ServiceNow;
+use strict;
+use base qw(Bugzilla::BugUrl);
+
+sub should_handle {
+ my ($class, $uri) = @_;
+ return $uri =~ m#^https?://[^.]+\.service-now\.com/nav_to\.do\?#;
+}
+
+sub _check_value {
+ my ($class, $uri) = @_;
+ $uri = $class->SUPER::_check_value($uri);
+ $uri->scheme('https');
+ return $uri;
+}
+
+1;