mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-12-15 19:53:02 -06:00
[feature] Add partial text search for accounts + statuses (#1836)
This commit is contained in:
parent
fab64a20b0
commit
831ae09f8b
30 changed files with 3834 additions and 669 deletions
|
|
@ -71,6 +71,7 @@ type DBService struct {
|
|||
db.Notification
|
||||
db.Relationship
|
||||
db.Report
|
||||
db.Search
|
||||
db.Session
|
||||
db.Status
|
||||
db.StatusBookmark
|
||||
|
|
@ -204,6 +205,10 @@ func NewBunDBService(ctx context.Context, state *state.State) (db.DB, error) {
|
|||
conn: conn,
|
||||
state: state,
|
||||
},
|
||||
Search: &searchDB{
|
||||
conn: conn,
|
||||
state: state,
|
||||
},
|
||||
Session: &sessionDB{
|
||||
conn: conn,
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue