Clean unecessary imports

This commit is contained in:
Tuan Dang
2023-01-02 15:24:28 +07:00
parent 029443161f
commit 1c2a43ceea
2 changed files with 1 additions and 12 deletions

View File

@ -147,7 +147,7 @@ const initSecretVersioningHelper = async () => {
} catch (err) {
Sentry.setUser(null);
Sentry.captureException(err);
throw new Error('Failed to ensure secrets are versioned');
throw new Error('Failed to ensure that secrets are versioned');
}
}

View File

@ -1,5 +1,4 @@
import * as Sentry from '@sentry/node';
import { Types } from 'mongoose';
import {
Secret,
ISecret,
@ -10,13 +9,8 @@ import {
} from '../ee/services';
import {
SecretVersion,
Action,
IAction
} from '../ee/models';
import {
takeSecretSnapshotHelper
} from '../ee/helpers/secret';
import { decryptSymmetric } from '../utils/crypto';
import {
SECRET_SHARED,
SECRET_PERSONAL,
@ -62,8 +56,6 @@ interface Update {
[index: string]: any;
}
type DecryptSecretType = 'text' | 'object' | 'expanded';
/**
* Push secrets for user with id [userId] to workspace
* with id [workspaceId] with environment [environment]. Follow steps:
@ -285,9 +277,6 @@ const v1PushSecrets = async ({
}
};
// TODO: optimize this route.
// TODO: ensure that it's possible to query for and filter logs
/**
* Push secrets for user with id [userId] to workspace
* with id [workspaceId] with environment [environment]. Follow steps: