feat(core): Allow transferring credentials from any project to any team project (#9563)

This commit is contained in:
Danny Martini
2024-06-04 13:54:48 +02:00
committed by GitHub
parent 245c63f216
commit 202c91e7ed
8 changed files with 371 additions and 19 deletions

View File

@@ -0,0 +1,7 @@
import { ResponseError } from './abstract/response.error';
export class TransferCredentialError extends ResponseError {
constructor(message: string) {
super(message, 400, 400);
}
}