| 11616 | } |
| 11617 | |
| 11618 | type GetConnectionLogsOffsetRow struct { |
| 11619 | ConnectionLog ConnectionLog `db:"connection_log" json:"connection_log"` |
| 11620 | UserUsername sql.NullString `db:"user_username" json:"user_username"` |
| 11621 | UserName sql.NullString `db:"user_name" json:"user_name"` |
| 11622 | UserEmail sql.NullString `db:"user_email" json:"user_email"` |
| 11623 | UserCreatedAt sql.NullTime `db:"user_created_at" json:"user_created_at"` |
| 11624 | UserUpdatedAt sql.NullTime `db:"user_updated_at" json:"user_updated_at"` |
| 11625 | UserLastSeenAt sql.NullTime `db:"user_last_seen_at" json:"user_last_seen_at"` |
| 11626 | UserStatus NullUserStatus `db:"user_status" json:"user_status"` |
| 11627 | UserLoginType NullLoginType `db:"user_login_type" json:"user_login_type"` |
| 11628 | UserRoles pq.StringArray `db:"user_roles" json:"user_roles"` |
| 11629 | UserAvatarUrl sql.NullString `db:"user_avatar_url" json:"user_avatar_url"` |
| 11630 | UserDeleted sql.NullBool `db:"user_deleted" json:"user_deleted"` |
| 11631 | UserQuietHoursSchedule sql.NullString `db:"user_quiet_hours_schedule" json:"user_quiet_hours_schedule"` |
| 11632 | WorkspaceOwnerUsername string `db:"workspace_owner_username" json:"workspace_owner_username"` |
| 11633 | OrganizationName string `db:"organization_name" json:"organization_name"` |
| 11634 | OrganizationDisplayName string `db:"organization_display_name" json:"organization_display_name"` |
| 11635 | OrganizationIcon string `db:"organization_icon" json:"organization_icon"` |
| 11636 | } |
| 11637 | |
| 11638 | func (q *sqlQuerier) GetConnectionLogsOffset(ctx context.Context, arg GetConnectionLogsOffsetParams) ([]GetConnectionLogsOffsetRow, error) { |
| 11639 | rows, err := q.db.QueryContext(ctx, getConnectionLogsOffset, |
nothing calls this directly
no outgoing calls
no test coverage detected