Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PB-3796]:fix/ url avatar api #1467

Merged
merged 1 commit into from
Feb 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions src/app/auth/services/user.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,8 @@ import {
} from '@internxt/sdk/dist/drive/users/types';
import { UserSettings } from '@internxt/sdk/dist/shared/types/userSettings';
import { SdkFactory } from '../../core/factory/sdk';
import envService from 'app/core/services/env.service';
import localStorageService from 'app/core/services/local-storage.service';

const TEMPORAL_AVATAR_API_URL = envService.isProduction() ? process.env.REACT_APP_AVATAR_URL : undefined;

export async function initializeUser(email: string, mnemonic: string): Promise<InitializeUserResponse> {
const usersClient = SdkFactory.getInstance().createUsersClient();
return usersClient.initialize(email, mnemonic);
Expand Down Expand Up @@ -55,7 +52,7 @@ const getFriendInvites = (): Promise<FriendInvite[]> => {
};

const updateUserAvatar = (payload: { avatar: Blob }): Promise<{ avatar: string }> => {
const usersClient = SdkFactory.getNewApiInstance().createUsersClient(TEMPORAL_AVATAR_API_URL);
const usersClient = SdkFactory.getNewApiInstance().createUsersClient();
const token = localStorageService.get('xNewToken') ?? undefined;
return usersClient.updateUserAvatar(payload, token);
};
Expand Down
Loading