fix: revert changes to access_token made during refactor
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful

This commit is contained in:
Radical 2025-07-19 23:39:56 +02:00
parent d2fec66ddb
commit 9bf435b535
6 changed files with 25 additions and 59 deletions

View file

@ -9,6 +9,7 @@ use axum::{
};
use diesel::{ExpressionMethods, QueryDsl};
use diesel_async::RunQueryDsl;
use serde::Serialize;
use uuid::Uuid;
use crate::{AppState, Conn, error::Error, schema::access_tokens::dsl};
@ -22,6 +23,13 @@ mod reset_password;
mod revoke;
mod verify_email;
#[derive(Serialize)]
pub struct Response {
access_token: String,
}
pub fn router() -> Router<Arc<AppState>> {
Router::new()
.route("/register", post(register::post))