about summary refs log tree commit diff
path: root/src (follow)
AgeCommit message (Expand)AuthorFilesLines
2021-04-05 chore: Relicense under GPL-3.0Vincent Ambo8-56/+56
2018-05-27 feat(db): Prevent responses to closed threadsVincent Ambo2-1/+14
2018-05-27 feat(errors): Introduce error variant for thread closingVincent Ambo2-6/+20
2018-05-27 feat(db): Update views with thread-closed fieldVincent Ambo3-0/+8
2018-05-27 feat(db): Add migration & fields to indicate a thread is closedVincent Ambo2-0/+2
2018-05-22 chore: Remove Tera usage in all modulesVincent Ambo3-28/+2
2018-05-22 refactor(templates): Move search result template to AskamaVincent Ambo1-2/+3
2018-05-22 refactor(templates): Move post editing template to AskamaVincent Ambo2-14/+14
2018-05-22 refactor(templates): Move thread page template to AskamaVincent Ambo2-6/+6
2018-05-22 refactor(templates): Use Askama for index templateVincent Ambo3-16/+40
2018-05-22 feat(templates): Add new MDL based index pageVincent Ambo1-1/+2
2018-05-19 refactor(handlers): Embed static files into binaryVincent Ambo2-13/+26
2018-05-19 feat(templates): Add syntax highlighting for code via highlight.jsVincent Ambo1-0/+11
2018-05-02 refactor(handlers/render): Use users from database for all functionsVincent Ambo2-57/+54
2018-05-02 refactor(main): Use actix-web's identity middleware for authVincent Ambo1-5/+9
2018-05-02 feat(db): Add LookupOrCreateUser messageVincent Ambo2-0/+50
2018-05-02 refactor(db/render/schema): Use SimplePost type for thread viewsVincent Ambo4-30/+67
2018-05-02 fix(schema): Update for author->user_id column renameVincent Ambo1-4/+4
2018-05-02 chore(schema): Update generated Diesel schemaVincent Ambo1-4/+14
2018-04-17 chore(license): Relicense under AGPL-3.0-or-laterVincent Ambo8-56/+88
2018-04-16 feat(templates): Add 'Last post by' to the list of threadsTatriX1-0/+2
2018-04-16 style(db): Fix whitespace errorVincent Ambo1-1/+1
2018-04-16 fix(db): Explicitly order posts in a threadVincent Ambo1-2/+5
2018-04-16 fix(render): Enable GFM's tagfilter extensionVincent Ambo2-2/+2
2018-04-16 chore(oidc): Enable debug log statement for token responsesVincent Ambo1-4/+6
2018-04-16 refactor(main): Include Tera templates into application binaryVincent Ambo1-7/+15
2018-04-15 feat(handlers): Implement post editing handlerVincent Ambo3-2/+31
2018-04-15 feat(db): Support UpdatePost messageVincent Ambo1-0/+23
2018-04-15 feat(handlers/render): Display edit form for user's own postsVincent Ambo4-1/+62
2018-04-15 feat(db): Support GetPost messageVincent Ambo1-0/+16
2018-04-15 refactor: Add a message!-macro to reduce message boilerplateVincent Ambo4-48/+22
2018-04-15 refactor(render): Pass serializable structs to Tera directlyVincent Ambo1-9/+3
2018-04-15 refactor(templates/render): Add generic post editing templateVincent Ambo3-15/+52
2018-04-15 refactor(main): Split enormous main() into smaller methodsVincent Ambo1-38/+58
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