I am trying to make dapp where user could upload their avatar but using assetmanager I have to provide the controller to every user for uploading their avatar so , that they are authorize to upload avatar how to handle this?

What type of topic is this? Support
Discussion | Support | Bug Report

Do you code you can share so that others in the thread can read along or reproduce your issue? Consider linking to a gist or repo for quicker support from the community

const assetManager = new AssetManager({ canisterId, agent });
    
      console.log("assetManager",assetManager);
const key = await assetManager.store(compressedFile, { path: "/uploads", fileName });
      console.log("key", key);
      setSrc("http://bd3sg-teaaa-aaaaa-qaaba-cai.localhost:4943"+key);

      const items = [{ key, fileName, width, height }];