41 lines
794 B
C#
41 lines
794 B
C#
|
|
||
|
using System;
|
||
|
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Threading.Tasks;
|
||
|
using Microsoft.AspNetCore.Http;
|
||
|
using Microsoft.AspNetCore.Mvc;
|
||
|
using Timelapse.Api;
|
||
|
using System.Text;
|
||
|
using System.Net.Http.Headers;
|
||
|
using System.Net.Http;
|
||
|
using System.IO;
|
||
|
|
||
|
using System.Net;
|
||
|
using System.Text.RegularExpressions;
|
||
|
using System.Drawing;
|
||
|
|
||
|
using System.Runtime.InteropServices;
|
||
|
|
||
|
namespace Timelapse.Controllers
|
||
|
{
|
||
|
[Route("api/[controller]")]
|
||
|
[ApiController]
|
||
|
|
||
|
public class ExtensionController : ControllerBase
|
||
|
{
|
||
|
[HttpGet]
|
||
|
public async Task<IActionResult> GetExtensionPage(string extId,string subPage)
|
||
|
{
|
||
|
return await Extensions.OnGetPage(WebUtility.UrlDecode(extId),WebUtility.UrlDecode(subPage));
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|