Skip to content

Commit

Permalink
Remove overload
Browse files Browse the repository at this point in the history
  • Loading branch information
sfmskywalker committed Oct 29, 2019
1 parent ff1b203 commit 48777d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 11 deletions.
4 changes: 0 additions & 4 deletions src/dashboard/Elsa.Dashboard/Elsa.Dashboard.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,4 @@
<ProjectReference Include="..\Elsa.WorkflowDesigner\Elsa.WorkflowDesigner.csproj" />
</ItemGroup>

<ItemGroup>
<Folder Include="Decorators" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,9 @@ public static class DashboardServiceCollectionExtensions
{
public static IServiceCollection AddElsaDashboard(
this IServiceCollection services,
Action<ElsaBuilder> configure) =>
services.AddElsaDashboard(default, configure);

public static IServiceCollection AddElsaDashboard(
this IServiceCollection services,
Action<OptionsBuilder<ElsaDashboardOptions>> options = null,
Action<ElsaBuilder> configure = null)
Action<OptionsBuilder<ElsaDashboardOptions>> options = default,
Action<ElsaBuilder> configure = default
)
{
var configuration = new ElsaBuilder(services);

Expand Down

0 comments on commit 48777d8

Please sign in to comment.