Skip to content

Commit e19673b

Browse files
authored
Merge pull request #1717 from openhealthcare/search-pattern-fix
Search pattern fix
2 parents 1a2afa4 + 6f41738 commit e19673b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
### 0.14.1 (Minor Release)
22

3+
The search plugin was not excluding search strings from analytics.
4+
This change makes it so that it does.
5+
36
### 0.14.0 (Major Release)
47

58
A User's UserProfile is now automatically created when you create a user in a post save signal.

opal/core/search/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class SearchPlugin(plugins.OpalPlugin):
3333
('extract-schema', api.ExtractSchemaViewSet)
3434
]
3535

36-
opal_angular_exclude_tracking_qs = [
36+
opal_angular_exclude_tracking_prefix = [
3737
"/search",
3838
"/extract",
3939
]

0 commit comments

Comments
 (0)