mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-03-02 09:49:11 +00:00
21 lines
458 B
C#
21 lines
458 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Net.Http;
|
|
using System.Web.Http;
|
|
using System.Web.Http.Cors;
|
|
|
|
namespace securecall.Controllers
|
|
{
|
|
public class ItemController : ApiController
|
|
{
|
|
[Authorize]
|
|
[EnableCors("*", "*", "*")]
|
|
public HttpResponseMessage Get()
|
|
{
|
|
return Request.CreateResponse(HttpStatusCode.OK, "Successful Call");
|
|
}
|
|
}
|
|
}
|