Wire in agent to the reporter texting system

Also rework the so the platform absorbs all the business logic that was
going in the wrong place.
This commit is contained in:
Eli Ribble 2026-01-27 19:56:26 +00:00
parent a68b8781e7
commit 9914274d42
No known key found for this signature in database
14 changed files with 86 additions and 76 deletions

View file

@ -178,7 +178,7 @@ func findUser(ctx context.Context, user_id int) (*models.User, error) {
return nil, err
}
}
log.Info().Int32("user_id", user.ID).Int32("org_id", user.OrganizationID).Msg("Found user")
//log.Info().Int32("user_id", user.ID).Int32("org_id", user.OrganizationID).Msg("Found user")
return user, err
}