Fix cannot upload organiation logo
Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
@@ -334,7 +334,12 @@ func (r *mutationResolver) UpdateOrganization(ctx context.Context, input types.U
|
||||
}
|
||||
|
||||
if input.Logo != nil {
|
||||
req.File = input.Logo.File
|
||||
req.File = &probo.File{
|
||||
Filename: input.Logo.Filename,
|
||||
ContentType: input.Logo.ContentType,
|
||||
Size: input.Logo.Size,
|
||||
Content: input.Logo.File,
|
||||
}
|
||||
}
|
||||
|
||||
organization, err := svc.Organizations.Update(ctx, req)
|
||||
|
||||
Reference in New Issue
Block a user