(ctx context.Context, id, roleID string)
| 2687 | } |
| 2688 | |
| 2689 | func (c *connection) UpdateOrganizationInviteRole(ctx context.Context, id, roleID string) error { |
| 2690 | res, err := c.getDB(ctx).ExecContext(ctx, `UPDATE org_invites SET org_role_id = $1 WHERE id = $2`, roleID, id) |
| 2691 | return checkUpdateRow("org invite", res, err) |
| 2692 | } |
| 2693 | |
| 2694 | func (c *connection) FindProjectInvites(ctx context.Context, projectID, afterEmail string, limit int) ([]*database.ProjectInviteWithRole, error) { |
| 2695 | var dtos []*projectInviteWithRoleDTO |
nothing calls this directly
no test coverage detected