about summary refs log tree commit diff
path: root/src (follow)
AgeCommit message (Expand)AuthorFilesLines
2018-04-15 fix(handlers): Trim leading/trailing whitespace from new threadsVincent Ambo1-6/+12
2018-04-15 feat(handlers): Determine whether current user can edit a postVincent Ambo3-3/+19
2018-04-14 refactor(handlers): Receive search terms via query parametersVincent Ambo2-4/+4
2018-04-14 fix(render): Escape post bodiesVincent Ambo1-1/+2
2018-04-14 feat: Implement search result view & enable searchVincent Ambo4-1/+39
2018-04-14 chore(db): Arbitrarily limit search result sizeVincent Ambo1-0/+1
2018-04-14 feat(main/db): Schedule regular search view refreshVincent Ambo3-0/+50
2018-04-14 refactor(schema): Unify integer type usage across tablesVincent Ambo1-2/+2
2018-04-14 refactor(handlers): Improve error handling in post creationVincent Ambo1-2/+2
2018-04-14 feat(db): Implement handling of 'SearchPosts' messageVincent Ambo2-1/+61
2018-04-14 feat(templates): Highlight stickied threads in indexVincent Ambo1-0/+2
2018-04-14 feat(db): Add support for stickies in databaseVincent Ambo3-5/+13
2018-04-14 feat(db): Add view for ordering thread index by most recent postVincent Ambo4-7/+29
2018-04-14 feat: License project under GPLv3Vincent Ambo7-0/+112
2018-04-14 refactor(db): Store thread body in the posts tableVincent Ambo5-23/+36
2018-04-12 feat(handlers/main): Add 'anonymous' mode for forumVincent Ambo2-9/+27
2018-04-12 feat(handler): Perform basic input validation on new thread viewVincent Ambo2-5/+32
2018-04-12 fix(handlers): Fix chained error handling in actorsVincent Ambo1-14/+15
2018-04-11 chore(handlers): Remove unused codeVincent Ambo1-8/+0
2018-04-11 fix(templates/handlers): Fix post anchorsVincent Ambo1-1/+1
2018-04-11 chore: Clean up unused importsVincent Ambo2-3/+1
2018-04-11 feat(render): Use a more human-readable format for datesVincent Ambo1-5/+15
2018-04-11 fix(render): Escape thread titles in indexVincent Ambo1-1/+19
2018-04-11 feat(render): Implement Markdown thread rendering & GravatarVincent Ambo2-10/+79
2018-04-11 chore(cargo): Add md5 crate dependencyVincent Ambo1-0/+2
2018-04-11 fix(main): Correctly set up rendering actorVincent Ambo1-3/+7
2018-04-11 refactor(handlers): Use rendering actor for page rendersVincent Ambo1-45/+27
2018-04-11 feat(render): Add rendering actorVincent Ambo2-1/+72
2018-04-10 fix(main): Update cookie session setup for new actix-webVincent Ambo1-4/+3
2018-04-09 fix(db): Order index threads in descending post timeVincent Ambo1-1/+3
2018-04-09 feat(handlers/templates): Add "New Thread" handler and templateVincent Ambo2-1/+10
2018-04-09 feat(handlers): Extract & add author to thread and post informationVincent Ambo3-6/+46
2018-04-09 feat(main): Initialise RequireLogin middleware on launchVincent Ambo1-4/+11
2018-04-09 feat(handlers): Add RequireLogin middlewareVincent Ambo2-4/+27
2018-04-09 fix(main): Generate random session keyVincent Ambo1-1/+10
2018-04-08 feat(handlers): Use cookie session backend to store author infoVincent Ambo3-12/+34
2018-04-08 feat(main): Configure & start OIDC actor when Converse launchesVincent Ambo1-5/+33
2018-04-08 feat(handler): Implement OIDC login & callback handlersVincent Ambo1-0/+23
2018-04-08 chore(models/schema): Update with author fieldsVincent Ambo2-0/+8
2018-04-08 feat(oidc): Implement initial OIDC actorVincent Ambo3-2/+152
2018-04-08 feat(handlers): Add reply_thread handler for postsVincent Ambo2-2/+18
2018-04-08 feat(db/models): Add handling of CreatePost messageVincent Ambo2-2/+30
2018-04-08 feat(handlers): Add thread submission handlerVincent Ambo3-1/+17
2018-04-08 feat(db): Support CreateThread messageVincent Ambo2-0/+29
2018-04-08 refactor(db): Use ConverseError instead of unwrapping/expectingVincent Ambo1-10/+8
2018-04-08 feat(errors): Introduce error module with custom error typeVincent Ambo2-2/+81
2018-04-08 refactor(main): Move handlers into separate handler moduleVincent Ambo2-61/+79
2018-04-08 feat(main): Support CONVERSE_BIND_HOST environment variableVincent Ambo1-2/+5
2018-04-08 refactor(main): Use actix-web extractor patternVincent Ambo1-10/+12
2018-04-08 refactor(db): Establish Post->Thread associationVincent Ambo3-7/+13