Matteo Scandolo | 817386b | 2015-11-04 16:07:09 +0100 | [diff] [blame] | 1 | (function() { |
Matteo Scandolo | 582cc81 | 2016-04-13 17:23:28 -0700 | [diff] [blame] | 2 | 'use strict'; |
Matteo Scandolo | 817386b | 2015-11-04 16:07:09 +0100 | [diff] [blame] | 3 | |
Matteo Scandolo | 582cc81 | 2016-04-13 17:23:28 -0700 | [diff] [blame] | 4 | /** |
| 5 | * @ngdoc service |
| 6 | * @name xos.helpers.NoHyperlinks |
| 7 | * @description This factory is automatically loaded trough xos.helpers and will add an $http interceptor that will add ?no_hyperlinks=1 to your api request, that is required by django |
| 8 | **/ |
Matteo Scandolo | 817386b | 2015-11-04 16:07:09 +0100 | [diff] [blame] | 9 | |
Matteo Scandolo | 582cc81 | 2016-04-13 17:23:28 -0700 | [diff] [blame] | 10 | angular |
| 11 | .module('xos.helpers') |
| 12 | .factory('NoHyperlinks', noHyperlinks); |
| 13 | |
| 14 | function noHyperlinks() { |
| 15 | return { |
| 16 | request: function(request){ |
| 17 | if(request.url.indexOf('.html') === -1){ |
| 18 | request.url += '?no_hyperlinks=1'; |
Matteo Scandolo | 817386b | 2015-11-04 16:07:09 +0100 | [diff] [blame] | 19 | } |
Matteo Scandolo | 582cc81 | 2016-04-13 17:23:28 -0700 | [diff] [blame] | 20 | return request; |
| 21 | } |
| 22 | }; |
| 23 | } |
Matteo Scandolo | 817386b | 2015-11-04 16:07:09 +0100 | [diff] [blame] | 24 | })(); |