Skip to content

Commit

Permalink
Remove unecessary imports
Browse files Browse the repository at this point in the history
  • Loading branch information
dangtony98 committed Jan 3, 2023
1 parent 9727075 commit fb394de
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions backend/src/controllers/v2/workspaceController.ts
Original file line number Diff line number Diff line change
@@ -1,29 +1,17 @@
import { Request, Response } from 'express';
import * as Sentry from '@sentry/node';
import {
Workspace,
Membership,
MembershipOrg,
Integration,
IntegrationAuth,
Key,
IUser,
ServiceToken,
} from '../../models';
import {
createWorkspace as create,
deleteWorkspace as deleteWork
} from '../../helpers/workspace';
import {
v2PushSecrets as push,
pullSecrets as pull,
reformatPullSecrets
} from '../../helpers/secret';
import { pushKeys } from '../../helpers/key';
import { addMemberships } from '../../helpers/membership';
import { postHogClient, EventService } from '../../services';
import { eventPushSecrets } from '../../events';
import { ADMIN, COMPLETED, GRANTED, ENV_SET } from '../../variables';
import { ENV_SET } from '../../variables';

interface V2PushSecret {
type: string; // personal or shared
Expand Down

0 comments on commit fb394de

Please sign in to comment.