summaryrefslogtreecommitdiffstats
path: root/server/src/routes/index.rs
AgeCommit message (Collapse)Author
2020-07-10Split code into cargo workspaces (#67)nutomic
More fixes - fixed docker builds - fixed mentions regex test - fixed DATABASE_URL stuff - change schema path in diesel.toml Address review comments - add jsonb column back into activity table - remove authors field from cargo.toml - adjust LEMMY_DATABASE_URL env var usage - rename all occurences of LEMMY_DATABASE_URL to DATABASE_URL Decouple utils and db Split code into cargo workspaces Co-authored-by: Felix Ableitner <me@nutomic.com> Reviewed-on: https://yerbamate.dev/LemmyNet/lemmy/pulls/67
2020-05-16Rework importsFelix
2020-04-21Adding web::blocks to routes.Dessalines
2020-04-19Adding websocket notification system.Dessalines
- HTTP and APUB clients can now send live updating messages to websocket clients - Rate limiting now affects both HTTP and websockets - Rate limiting / Websocket logic is now moved into the API Perform functions. - TODO This broke getting current online users, but that will have to wait for the perform trait to be made async. - Fixes #446
2020-04-11Adding live reloading of config.hjson changes through UI.Dessalines
- https://stackoverflow.com/questions/61159698/update-re-initialize-a-var-defined-in-lazy-static/61161271#61161271 - https://stackoverflow.com/questions/29654927/how-do-i-assign-a-string-to-a-mutable-static-variable/47181804#47181804
2020-04-10Adding an admin settings page.Dessalines
- Fixes #620 - Adding a UserListing component. Fixes #627
2020-02-07Add new comments views to main and community pages. Fixes #480Dessalines
2020-01-22Adding private messaging, and matrix user ids.Dessalines
- Fixes #244
2020-01-10Upgrade actix to 2.0 (fixes #392)Felix
2019-12-31Use actix config to handle routes in seperate folders (#378)Felix Ableitner