mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-23 03:51:36 +03:00
refactor(workspaces): Rename SEED_TWENTY_WORKSPACE_ID to SEED_ACME_WO… (#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.
This commit is contained in:
parent
35f2d7a004
commit
4d8445a34a
@ -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,
|
||||
@ -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(
|
||||
|
@ -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';
|
||||
@ -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,
|
||||
|
@ -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,
|
||||
@ -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,
|
||||
},
|
||||
};
|
||||
|
@ -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';
|
||||
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user