Skip to content

Commit

Permalink
feat(users): set 1gb for new users
Browse files Browse the repository at this point in the history
  • Loading branch information
sg-gs committed Jun 18, 2024
1 parent 4a97bb7 commit a52387d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/core/users/usecase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export class UsersUsecase {
async createUser(email: string, password: string) {
this.eventBus.emit(EventBusEvents.UserCreationStarts, { email });

const maxSpaceBytes = 1024 * 1024 * 1024 * 2;
const maxSpaceBytes = 1024 * 1024 * 1024 * 1;
const activated = true;

const emailMatch = isEmailValid(email);
Expand Down

0 comments on commit a52387d

Please sign in to comment.