Skip to content

Commit

Permalink
Seal INavigationProvider, IAsyncResultFilter, IPermissionProvider, St…
Browse files Browse the repository at this point in the history
…artupBase, IRecipeStepHandler, DisplayDriver, Controller classes.
  • Loading branch information
sarahelsaig committed Sep 24, 2024
1 parent dfd750d commit e8ecabb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Lombiq.VueJs.Samples/Controllers/QrCardController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace Lombiq.VueJs.Samples.Controllers;

public class QrCardController : Controller
public sealed class QrCardController : Controller
{
private readonly IContentManager _contentManager;

Expand Down
2 changes: 1 addition & 1 deletion Lombiq.VueJs.Samples/Controllers/VueSfcController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Lombiq.VueJs.Samples.Controllers;

// This controller is for returning a Vue.js Single File Component (abbreviated as SFC going forward) in an MVC view.
// However, you could use any other ways of doing it such as injecting as a shape or using widgets.
public class VueSfcController : Controller
public sealed class VueSfcController : Controller
{
private readonly IClock _clock;
private readonly IStringLocalizer<VueSfcController> T;
Expand Down
2 changes: 1 addition & 1 deletion Lombiq.VueJs.Samples/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace Lombiq.VueJs.Samples;

public class Startup : StartupBase
public sealed class Startup : StartupBase
{
public override void ConfigureServices(IServiceCollection services) =>
services.AddTransient<IConfigureOptions<ResourceManagementOptions>, ResourceManagementOptionsConfiguration>()
Expand Down
2 changes: 1 addition & 1 deletion Lombiq.VueJs/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace Lombiq.VueJs;

public class Startup : StartupBase
public sealed class Startup : StartupBase
{
public override void ConfigureServices(IServiceCollection services)
{
Expand Down

0 comments on commit e8ecabb

Please sign in to comment.