1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-14 00:19:16 +01:00

fix: remove unused import

This commit is contained in:
Fredrik Oseberg 2022-03-04 17:05:46 +01:00
parent 53a5cea3a1
commit bfe84bc9a4
2 changed files with 1 additions and 2 deletions

View File

@ -14,7 +14,6 @@ import { IUnleashServices } from '../../types/services';
import ContextService from '../../services/context-service';
import { Logger } from '../../logger';
import { IAuthRequest } from '../unleash-types';
import { IConstraint } from 'lib/types/model';
class ContextController extends Controller {
private logger: Logger;

View File

@ -110,7 +110,7 @@ export default class ProjectFeaturesController extends Controller {
DELETE_FEATURE_STRATEGY,
);
this.post(
`${PATH_FEATURE}/validate-constraint`,
`${PATH_FEATURE}/constraint/validate`,
this.validateConstraint,
NONE,
);