-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: drop duplicate FileSystemEntryFilterType
- Loading branch information
1 parent
5447c62
commit 1b213b0
Showing
2 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
src/Service.Dashboard/src/HttpApi/Types/Encodes/Filters/EncodeFilterType.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using Giantnodes.Service.Dashboard.Domain.Aggregates.Encodes; | ||
using HotChocolate.Data.Filters; | ||
|
||
namespace Giantnodes.Service.Dashboard.HttpApi.Types.Encodes.Filters; | ||
|
||
public class EncodeFilterType : FilterInputType<Encode> | ||
{ | ||
protected override void Configure(IFilterInputTypeDescriptor<Encode> descriptor) | ||
{ | ||
descriptor | ||
.Field(p => p.Id) | ||
.Type<IdOperationFilterInputType>(); | ||
} | ||
} |
14 changes: 0 additions & 14 deletions
14
src/Service.Dashboard/src/HttpApi/Types/Encodes/Filters/FileSystemEntryFilterType.cs
This file was deleted.
Oops, something went wrong.