[PR #43] [MERGED] feat: rewrite rauth #57

Closed
opened 2026-02-16 12:52:46 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/stoatchat/rust-authifier/pull/43
Author: @insertish
Created: 6/1/2022
Status: Merged
Merged: 6/3/2022
Merged by: @insertish

Base: masterHead: feat/rewrite


📝 Commits (10+)

  • e4a55a5 chore: start rewrite; move models
  • e18cc5a chore: port configuration structs
  • d961200 chore: port result and blocklist verification code
  • 6868682 chore: centre image
  • 066648d chore: port captcha code
  • 2c23676 feat: port password scanning code
  • 7b7a838 chore(doc): write comments for db models
  • 6bb36cd chore: template impl
  • 56a5f40 chore: todo! routes
  • 618eced feat: start work on db + all derivations

📊 Changes

77 files changed (+3919 additions, -3548 deletions)

View changed files

📝 .github/workflows/rust.yml (+20 -17)
📝 .gitignore (+1 -0)
📝 Cargo.lock (+854 -1245)
📝 Cargo.toml (+46 -44)
📝 README.md (+33 -38)
assets/revolt_smtp_source_list.txt (+0 -2)
📝 assets/revolt_source_list.txt (+4 -0)
📝 banner.png (+0 -0)
crates/rauth/Cargo.toml (+67 -0)
crates/rauth/src/config/blocklists.rs (+103 -0)
crates/rauth/src/config/captcha.rs (+113 -0)
crates/rauth/src/config/email_verification.rs (+182 -0)
crates/rauth/src/config/mod.rs (+31 -0)
crates/rauth/src/config/passwords.rs (+96 -0)
crates/rauth/src/database/definition.rs (+54 -0)
crates/rauth/src/database/dummy.rs (+85 -0)
crates/rauth/src/database/mod.rs (+45 -0)
crates/rauth/src/database/mongo.rs (+416 -0)
crates/rauth/src/derive/mod.rs (+5 -0)
crates/rauth/src/derive/okapi.rs (+106 -0)

...and 57 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/stoatchat/rust-authifier/pull/43 **Author:** [@insertish](https://github.com/insertish) **Created:** 6/1/2022 **Status:** ✅ Merged **Merged:** 6/3/2022 **Merged by:** [@insertish](https://github.com/insertish) **Base:** `master` ← **Head:** `feat/rewrite` --- ### 📝 Commits (10+) - [`e4a55a5`](https://github.com/stoatchat/rust-authifier/commit/e4a55a5c6ef99ac5a7974f36776ee531f3181a3e) chore: start rewrite; move models - [`e18cc5a`](https://github.com/stoatchat/rust-authifier/commit/e18cc5aa4ccb1a1f04633315600e1ab83a95416d) chore: port configuration structs - [`d961200`](https://github.com/stoatchat/rust-authifier/commit/d961200fc906234e1f6a06a80adb544ac1e507f6) chore: port result and blocklist verification code - [`6868682`](https://github.com/stoatchat/rust-authifier/commit/6868682e02ce8d7e1af718caee2ad78dc6fb8eef) chore: centre image - [`066648d`](https://github.com/stoatchat/rust-authifier/commit/066648d56a4908e04b0084effa0d4ad6d68b38af) chore: port captcha code - [`2c23676`](https://github.com/stoatchat/rust-authifier/commit/2c236760338d403792bed68ba09c79ef9e112f04) feat: port password scanning code - [`7b7a838`](https://github.com/stoatchat/rust-authifier/commit/7b7a838240d3e2fd25dcdfff852ff0fb7f6e1005) chore(doc): write comments for db models - [`6bb36cd`](https://github.com/stoatchat/rust-authifier/commit/6bb36cdfcbac384ddec21f133597c49c664ced90) chore: template impl - [`56a5f40`](https://github.com/stoatchat/rust-authifier/commit/56a5f404a10c66cbb718147cd006f0e45855c45c) chore: todo! routes - [`618eced`](https://github.com/stoatchat/rust-authifier/commit/618eced1221f25cc56aa9f0186eceb82e566b394) feat: start work on db + all derivations ### 📊 Changes **77 files changed** (+3919 additions, -3548 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/rust.yml` (+20 -17) 📝 `.gitignore` (+1 -0) 📝 `Cargo.lock` (+854 -1245) 📝 `Cargo.toml` (+46 -44) 📝 `README.md` (+33 -38) ➖ `assets/revolt_smtp_source_list.txt` (+0 -2) 📝 `assets/revolt_source_list.txt` (+4 -0) 📝 `banner.png` (+0 -0) ➕ `crates/rauth/Cargo.toml` (+67 -0) ➕ `crates/rauth/src/config/blocklists.rs` (+103 -0) ➕ `crates/rauth/src/config/captcha.rs` (+113 -0) ➕ `crates/rauth/src/config/email_verification.rs` (+182 -0) ➕ `crates/rauth/src/config/mod.rs` (+31 -0) ➕ `crates/rauth/src/config/passwords.rs` (+96 -0) ➕ `crates/rauth/src/database/definition.rs` (+54 -0) ➕ `crates/rauth/src/database/dummy.rs` (+85 -0) ➕ `crates/rauth/src/database/mod.rs` (+45 -0) ➕ `crates/rauth/src/database/mongo.rs` (+416 -0) ➕ `crates/rauth/src/derive/mod.rs` (+5 -0) ➕ `crates/rauth/src/derive/okapi.rs` (+106 -0) _...and 57 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 12:52:46 -05:00
yindo closed this issue 2026-02-16 12:52:46 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: stoatchat/rust-authifier#57