You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can we auto set an image using keystone 4? . For example if i have a model name Person and person has name , age , and profile pic . Now instead of manually uploading profile Pic . I have created a feature where data is being uploaded from csv , csv contains name , age and profile pic URL . Now I want to set that profile pic URL automatically is that possible in keystone 4?
so that i no longer manually upload picture
or set automati image from local file
What I did is an http request to the URL, download the file on your server and set it on your profile Model... but how can we set it through the model ?
The text was updated successfully, but these errors were encountered:
Hi, in your case, why do you not simply store the profile picture as an URL instead of downloading it and re-storing it? Moreover, your not responsible anymore for the good availability of the file!
How can we auto set an image using keystone 4? . For example if i have a model name Person and person has name , age , and profile pic . Now instead of manually uploading profile Pic . I have created a feature where data is being uploaded from csv , csv contains name , age and profile pic URL . Now I want to set that profile pic URL automatically is that possible in keystone 4?
so that i no longer manually upload picture
or set automati image from local file
What I did is an http request to the URL, download the file on your server and set it on your profile Model... but how can we set it through the model ?
The text was updated successfully, but these errors were encountered: