mirror of
https://github.com/bitwarden/server
synced 2025-12-16 16:23:31 +00:00
Rename service file to service name
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
using Bit.SeederApi.Models.Requests;
|
using Bit.SeederApi.Models.Requests;
|
||||||
|
using Bit.SeederApi.Models.Response;
|
||||||
using Bit.SeederApi.Services;
|
using Bit.SeederApi.Services;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
|
||||||
@@ -15,7 +16,7 @@ public class SeedController(ILogger<SeedController> logger, ISeedService recipeS
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var response = recipeService.ExecuteScene(request.Template, request.Arguments);
|
SceneResponseModel response = recipeService.ExecuteScene(request.Template, request.Arguments);
|
||||||
|
|
||||||
return Json(response);
|
return Json(response);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user