14 lines
334 B
C#
14 lines
334 B
C#
using System.Web.Mvc;
|
|
|
|
namespace BeWoPlanerMobil.Controllers
|
|
{
|
|
public class ExternalSignatureController : Controller
|
|
{
|
|
public ActionResult ExternalSignature(string token)
|
|
{
|
|
var info = BeWo.Service.Security.SecurityUtils.SliceOneTimeLinkToken(token);
|
|
|
|
return View();
|
|
}
|
|
}
|
|
} |