discourse/app
Guo Xiang Tan 5c230266d3
FIX: Inject extra lexemes for host lexeme.
```
discourse_development=# SELECT alias, lexemes FROM TS_DEBUG('www.discourse.org');
 alias |       lexemes
-------+---------------------
 host  | {www.discourse.org}

discourse_development=# SELECT TO_TSVECTOR('www.discourse.org');
      to_tsvector
-----------------------
 'www.discourse.org':1
```

Given the above lexeme, we will inject additional lexeme by splitting
the host on `.`. The actual tsvector stored will look something like

```
               tsvector
---------------------------------------
 'discourse':1 'discourse.org':1 'org':1 'www':1 'www.discourse.org':1
```
2020-07-14 15:32:40 +08:00
..
assets FEATURE: Add search to user bookmark list (#10230) 2020-07-14 14:43:41 +10:00
controllers FIX: Incorrect search blurb when advanced search filters are used take2 2020-07-14 11:50:40 +08:00
helpers FIX: Set the lang/xml:lang html attrs in emails (#10218) 2020-07-13 16:39:40 +02:00
jobs FIX: Don't award new user of the month in the wrong month 2020-07-13 15:05:30 -04:00
mailers FEATURE: Implement support for IMAP and SMTP email protocols. (#8301) 2020-07-10 12:05:55 +03:00
models PERF: Add user_id condition so we can use another index in the query 2020-07-13 15:26:56 -03:00
serializers FEATURE: Add search to user bookmark list (#10230) 2020-07-14 14:43:41 +10:00
services FIX: Inject extra lexemes for host lexeme. 2020-07-14 15:32:40 +08:00
views UX: Add Login button on 403 error page if user is not logged in (#10154) 2020-07-01 18:27:42 +03:00