File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -24,28 +24,28 @@ public UmbracoTreeSearcherFields(ILocalizationService localizationService)
24
24
}
25
25
26
26
/// <inheritdoc />
27
- public IEnumerable < string > GetBackOfficeFields ( ) => _backOfficeFields ;
27
+ public virtual IEnumerable < string > GetBackOfficeFields ( ) => _backOfficeFields ;
28
28
29
29
/// <inheritdoc />
30
- public IEnumerable < string > GetBackOfficeMembersFields ( ) => _backOfficeMembersFields ;
30
+ public virtual IEnumerable < string > GetBackOfficeMembersFields ( ) => _backOfficeMembersFields ;
31
31
32
32
/// <inheritdoc />
33
- public IEnumerable < string > GetBackOfficeMediaFields ( ) => _backOfficeMediaFields ;
33
+ public virtual IEnumerable < string > GetBackOfficeMediaFields ( ) => _backOfficeMediaFields ;
34
34
35
35
/// <inheritdoc />
36
- public IEnumerable < string > GetBackOfficeDocumentFields ( ) => Enumerable . Empty < string > ( ) ;
36
+ public virtual IEnumerable < string > GetBackOfficeDocumentFields ( ) => Enumerable . Empty < string > ( ) ;
37
37
38
38
/// <inheritdoc />
39
- public ISet < string > GetBackOfficeFieldsToLoad ( ) => _backOfficeFieldsToLoad ;
39
+ public virtual ISet < string > GetBackOfficeFieldsToLoad ( ) => _backOfficeFieldsToLoad ;
40
40
41
41
/// <inheritdoc />
42
- public ISet < string > GetBackOfficeMembersFieldsToLoad ( ) => _backOfficeMembersFieldsToLoad ;
42
+ public virtual ISet < string > GetBackOfficeMembersFieldsToLoad ( ) => _backOfficeMembersFieldsToLoad ;
43
43
44
44
/// <inheritdoc />
45
- public ISet < string > GetBackOfficeMediaFieldsToLoad ( ) => _backOfficeMediaFieldsToLoad ;
45
+ public virtual ISet < string > GetBackOfficeMediaFieldsToLoad ( ) => _backOfficeMediaFieldsToLoad ;
46
46
47
47
/// <inheritdoc />
48
- public ISet < string > GetBackOfficeDocumentFieldsToLoad ( )
48
+ public virtual ISet < string > GetBackOfficeDocumentFieldsToLoad ( )
49
49
{
50
50
var fields = _backOfficeDocumentFieldsToLoad ;
51
51
You can’t perform that action at this time.
0 commit comments