From fd6a74e8ca1f5ded2a760b8ac644124862d80d54 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Sun, 24 Aug 2025 01:12:06 -0400 Subject: Hoist `password` out to the top level. Having this buried under `crate::user` makes it hard to split up the roles `user` fulfils right now. Moving it out to its own module makes it a bit tidier to reuse it in a separate, authentication-only way. --- src/test/fixtures/identity.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/test/fixtures/identity.rs') diff --git a/src/test/fixtures/identity.rs b/src/test/fixtures/identity.rs index cb325d8..84e1cf6 100644 --- a/src/test/fixtures/identity.rs +++ b/src/test/fixtures/identity.rs @@ -2,12 +2,12 @@ use crate::{ app::App, clock::RequestedAt, name::Name, + password::Password, test::fixtures, token::{ self, extract::{Identity, IdentityCookie}, }, - user::Password, }; pub async fn create(app: &App, created_at: &RequestedAt) -> Identity { -- cgit v1.2.3