This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Microsoft.AspNetCore.Mvc; | |
| using Newtonsoft.Json; | |
| using NPoco; | |
| using Umbraco.Cms.Infrastructure.Persistence.DatabaseAnnotations; | |
| using Umbraco.Cms.Infrastructure.Scoping; | |
| using Umbraco.Cms.Web.Common.Controllers; | |
| namespace UmbracoProject; | |
| public class FeedbackController : UmbracoApiController |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Net; | |
| using System.Net.Http; | |
| using Umbraco.Web.WebApi; | |
| namespace Example.Controllers | |
| { | |
| /// <summary> | |
| /// Protectec Backoffice controller - Users must be logged in to call this | |
| /// Url: /umbraco/backoffice/api/bulk/PostPerformBulkUpdate | |
| /// </summary> |