Skip to content

Commit

Permalink
Automatic release v4.0.x-20241015
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienbeau committed Oct 15, 2024
1 parent 6c242c9 commit 982be7f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,15 @@ rake -T
rake db:mongoid:create_indexes
```

### Purge old session

In mongo db sheeh you can purge the old session using (TODO we should do a rake task)

```
db.getCollection("sessions").deleteMany({"updated_at": {$lt:ISODate("2023-12-06")}})
```



# TODO
- improve configuration of allowed lang in front and limitation of indexing with mongodb
Expand Down

0 comments on commit 982be7f

Please sign in to comment.