Skip to content

Commit

Permalink
Add new interface implementation needed after rebase
Browse files Browse the repository at this point in the history
Rebasing into develop pulled in a change that LfClassicMiniLcmApi didn't
yet implement. Since LF Classic doesn't handle complex forms, the
implementation is dead simple: just return null.
  • Loading branch information
rmunn committed Dec 4, 2024
1 parent 84624cc commit c934db3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions backend/LfClassicData/LfClassicMiniLcmApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ public IAsyncEnumerable<ComplexFormType> GetComplexFormTypes()
return AsyncEnumerable.Empty<ComplexFormType>();
}

public Task<ComplexFormType?> GetComplexFormType(Guid id)
{
return Task.FromResult<ComplexFormType?>(null);
}

public async Task<WritingSystems> GetWritingSystems()
{
var inputSystems = await systemDbContext.Projects.AsQueryable()
Expand Down

0 comments on commit c934db3

Please sign in to comment.