Skip to content

Commit

Permalink
refactor(workspaces): Rename SEED_TWENTY_WORKSPACE_ID to SEED_ACME_WO… (
Browse files Browse the repository at this point in the history
#8611)

…RKSPACE_ID

The Pull Request modifies seed data by replacing
SEED_TWENTY_WORKSPACE_ID with SEED_ACME_WORKSPACE_ID across several
files.
- Updated SEED_TWENTY_WORKSPACE_ID to SEED_ACME_WORKSPACE_ID.
- Modified relevant import paths and seeds involving workspace data.
- Changes affect seeding processes for workspace members, user
workspaces, and general workspace details.
  • Loading branch information
AMoreaux authored Nov 22, 2024
1 parent 35f2d7a commit 4d8445a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { EntityManager } from 'typeorm';
import { seedCoreSchema } from 'src/database/typeorm-seeds/core';
import {
SEED_APPLE_WORKSPACE_ID,
SEED_TWENTY_WORKSPACE_ID,
SEED_ACME_WORKSPACE_ID,
} from 'src/database/typeorm-seeds/core/workspaces';
import {
getDevSeedCompanyCustomFields,
Expand Down Expand Up @@ -53,7 +53,7 @@ import { WorkspaceSyncMetadataService } from 'src/engine/workspace-manager/works
'Seed workspace with initial data. This command is intended for development only.',
})
export class DataSeedWorkspaceCommand extends CommandRunner {
workspaceIds = [SEED_APPLE_WORKSPACE_ID, SEED_TWENTY_WORKSPACE_ID];
workspaceIds = [SEED_APPLE_WORKSPACE_ID, SEED_ACME_WORKSPACE_ID];
private readonly logger = new Logger(DataSeedWorkspaceCommand.name);

constructor(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { DataSource } from 'typeorm';

import {
SEED_APPLE_WORKSPACE_ID,
SEED_TWENTY_WORKSPACE_ID,
SEED_ACME_WORKSPACE_ID,
} from 'src/database/typeorm-seeds/core/workspaces';
import { UserWorkspace } from 'src/engine/core-modules/user-workspace/user-workspace.entity';
import { DEV_SEED_USER_IDS } from 'src/database/typeorm-seeds/core/users';
Expand Down Expand Up @@ -33,7 +33,7 @@ export const seedUserWorkspaces = async (
];
}

if (workspaceId === SEED_TWENTY_WORKSPACE_ID) {
if (workspaceId === SEED_ACME_WORKSPACE_ID) {
userWorkspaces = [
{
userId: DEV_SEED_USER_IDS.TIM,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
const tableName = 'workspace';

export const SEED_APPLE_WORKSPACE_ID = '20202020-1c25-4d02-bf25-6aeccf7ea419';
export const SEED_TWENTY_WORKSPACE_ID = '3b8e6458-5fc1-4e63-8563-008ccddaa6db';
export const SEED_ACME_WORKSPACE_ID = '3b8e6458-5fc1-4e63-8563-008ccddaa6db';

export const seedWorkspaces = async (
workspaceDataSource: DataSource,
Expand All @@ -34,12 +34,12 @@ export const seedWorkspaces = async (
logo: 'https://twentyhq.github.io/placeholder-images/workspaces/apple-logo.png',
activationStatus: WorkspaceActivationStatus.ACTIVE,
},
[SEED_TWENTY_WORKSPACE_ID]: {
[SEED_ACME_WORKSPACE_ID]: {
id: workspaceId,
displayName: 'Twenty',
domainName: 'twenty.dev',
inviteHash: 'twenty.dev-invite-hash',
logo: 'https://twentyhq.github.io/placeholder-images/workspaces/twenty-logo.png',
displayName: 'Acme',
domainName: 'acme.dev',
inviteHash: 'acme.dev-invite-hash',
logo: 'https://logos-world.net/wp-content/uploads/2022/05/Acme-Logo-700x394.png',
activationStatus: WorkspaceActivationStatus.ACTIVE,
},
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { EntityManager } from 'typeorm';

import {
SEED_APPLE_WORKSPACE_ID,
SEED_TWENTY_WORKSPACE_ID,
SEED_ACME_WORKSPACE_ID,
} from 'src/database/typeorm-seeds/core/workspaces';
import { WorkspaceMember } from 'src/engine/core-modules/user/dtos/workspace-member.dto';
import { DEV_SEED_USER_IDS } from 'src/database/typeorm-seeds/core/users';
Expand Down Expand Up @@ -64,7 +64,7 @@ export const seedWorkspaceMember = async (
];
}

if (workspaceId === SEED_TWENTY_WORKSPACE_ID) {
if (workspaceId === SEED_ACME_WORKSPACE_ID) {
workspaceMembers = [
{
id: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM,
Expand Down

0 comments on commit 4d8445a

Please sign in to comment.