File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
src/packages/documents/documents/repository/validation Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 4
4
DocumentService ,
5
5
type UpdateDocumentRequestModel ,
6
6
} from '@umbraco-cms/backoffice/external/backend-api' ;
7
+ import type { UmbControllerHost } from '@umbraco-cms/backoffice/controller-api' ;
7
8
import { tryExecute } from '@umbraco-cms/backoffice/resources' ;
8
9
9
10
/**
@@ -20,7 +21,9 @@ export class UmbDocumentValidationServerDataSource {
20
21
* @param {UmbControllerHost } host
21
22
* @memberof UmbDocumentPublishingServerDataSource
22
23
*/
23
- constructor ( ) {
24
+ // TODO: [v15]: ignoring unused var here here to prevent a breaking change
25
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
26
+ constructor ( host : UmbControllerHost ) {
24
27
//this.#host = host;
25
28
}
26
29
You can’t perform that action at this time.
0 commit comments