Hi Andrew, Can you clarify your goals for us? I'm trying to think of a use-case where one would want ProductImages editable by non-admin users. What you want is certainly possible, but might end up causing problems with the overall experience of your users.
-ken On Thu, Jun 4, 2015 at 5:42 AM, Andrew Fam <[email protected]> wrote: > I"m wondering how to create a new product image directly without the admin. > > Using a package that defines the following > > def upload_receive( request ): """ Returns the file(s) uploaded by the > user. """ return request.FILES['files[]'] if request.FILES else None > I tried to create a Product image with the following which works in non > cartridge fields, > > f = upload_receive(request) > instance = ProductImage.objects.create(file=f, product_id=2) > > I get *** TypeError: expected string or buffer > > > > -- > You received this message because you are subscribed to the Google Groups > "Mezzanine Users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
