(user: &'s user::Row, login: &'s str)
| 10 | |
| 11 | impl<'s> CompleteRegistration<'s> { |
| 12 | pub fn new(user: &'s user::Row, login: &'s str) -> Self { |
| 13 | Self { user, login } |
| 14 | } |
| 15 | |
| 16 | pub async fn call<'t>(&self, tx: &mut PgTransaction<'t>) -> Result<()> { |
| 17 | let (user_id, name) = self.user_info(); |
nothing calls this directly
no outgoing calls
no test coverage detected