summaryrefslogtreecommitdiff
path: root/model/session.go (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-10-15Use CSP header to restrict resource loadingr1-0/+2
This helps mitigate XSS exploits. Users will have to save the settings again to make the custom CSS work.
2023-10-07Remove unused session ID fieldr1-1/+0
2022-10-25Use cookies for session storager1-20/+40
Remove the server side session storage and store all the session related data in the client side cookies. This decreases the exposure of the auth tokens. It also simplifies the installation process as bloat no longer requires write access to the filesystem. This is a breaking change, all the existing sessions will stop working.
2020-03-04Remove session details on signoutr1-0/+1
2020-02-02Add status deletionr1-0/+1
2020-01-28Refactor everythingr1-1/+1
2020-01-26Add CSRF protectionr1-0/+1
2019-12-21Add support for scopesr1-1/+0
- Add scope selection for for new post - Save new post scope in db - Copy scope on reply - Show scope icon on posts
2019-12-21Use a custom client for settingsr1-3/+4
2019-12-21Use json format for app and session repor1-27/+3
2019-12-17Use filesystem based kv store instead of sqliter1-4/+30