Skip to content

Commit

Permalink
add: threads
Browse files Browse the repository at this point in the history
add: response replies
add: question context
fix: moderator view for questions
add: response thread UI
  • Loading branch information
trisuaso committed Oct 3, 2024
1 parent 1be1d9f commit f8ce709
Show file tree
Hide file tree
Showing 32 changed files with 660 additions and 334 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/authbeam/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Authentication manager with user accounts and simple group-based permissions.
#![doc = include_str!("../README.md")]
#![doc(issue_tracker_base_url = "https://github.com/hkauso/xsu/issues/")]
#![doc(issue_tracker_base_url = "https://github.com/swmff/rainbeam/issues/")]
pub mod api;
pub mod database;
pub mod model;
Expand Down
2 changes: 1 addition & 1 deletion crates/databeam/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![doc = include_str!("../README.md")]
#![doc(issue_tracker_base_url = "https://github.com/hkauso/xsu/issues/")]
#![doc(issue_tracker_base_url = "https://github.com/swmff/rainbeam/issues/")]
pub mod cachedb;
pub mod config;
pub mod database;
Expand Down
2 changes: 1 addition & 1 deletion crates/rainbeam/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rainbeam"
version = "1.6.1"
version = "1.7.0"
edition = "2021"
authors = ["trisuaso", "swmff"]
description = "Ask, share, socialize!"
Expand Down
1 change: 1 addition & 0 deletions crates/rainbeam/sql/add_context_col.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE "xquestions" ADD COLUMN "context" TEXT DEFAULT '{}';
1 change: 1 addition & 0 deletions crates/rainbeam/sql/add_reply_col.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE "xresponses" ADD COLUMN "reply" TEXT DEFAULT '';
Loading

0 comments on commit f8ce709

Please sign in to comment.