using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Remotely.Server.Auth; using Remotely.Server.Services; using Remotely.Shared.Entities; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Remotely.Server.API; [Route("api/[controller]")] [ApiController] public class SavedScriptsController : ControllerBase { private readonly IDataService _dataService; public SavedScriptsController(IDataService dataService) { _dataService = dataService; } [ServiceFilter(typeof(ExpiringTokenFilter))] [HttpGet("{scriptId}")] public async Task> GetScript(Guid scriptId) { var result = await _dataService.GetSavedScript(scriptId); if (!result.IsSuccess) { return NotFound(); } return result.Value; } }