To update and view a user profile image on SAIL form

Hi All,

Is there a way where a user can upload and update his profile picture , and after uploading ,he/she can view the photo which was uploaded in a SAIL form.

The functionality is similar to what we usually do to update profile details in settings.

  Discussion posts and replies are publicly visible

Parents
  • Hi Larsen,

    I dont think so we can do it , and we have a!updateUserProfile() function here we can update all other user details except user profile picture , but we can show user profile in interface using code bellow.

    a!imageField(

      images: a!userImage(

        user: loggedInUser(),

        caption: loggedInUser()

      ),

      style: "AVATAR"

    )

Reply
  • Hi Larsen,

    I dont think so we can do it , and we have a!updateUserProfile() function here we can update all other user details except user profile picture , but we can show user profile in interface using code bellow.

    a!imageField(

      images: a!userImage(

        user: loggedInUser(),

        caption: loggedInUser()

      ),

      style: "AVATAR"

    )

Children