Skip to content

Commit

Permalink
Updates for new plugin assembly interfaces (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjaksn authored Dec 20, 2024
1 parent f03fc67 commit 6944648
Show file tree
Hide file tree
Showing 3 changed files with 393 additions and 233 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ feature is enabled and registers the custom identity service as a singleton.

:::info

Note the implementation of the IPluginModule interface. This is a
Note the implementation of the ICustomModule interface. This is a
“marker” interface makes the “plugin” discoverable at startup by the API’s
built-in plugin support, resulting in the automatic invocation of the
registration logic to register the necessary components in the Autofac
Expand All @@ -28,7 +28,7 @@ project or discoverable in the configured Plugin folder at runtime.
:::

```csharp
public class CustomIdentityServiceModule : ConditionalModule, IPluginModule
public class CustomIdentityServiceModule : ConditionalModule, ICustomModule
{
public CustomIdentityServiceModule(ApiSettings apiSettings)
: base(apiSettings, nameof(CustomIdentityServiceModule)) { }
Expand Down

This file was deleted.

Loading

0 comments on commit 6944648

Please sign in to comment.