mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-07 21:48:24 +00:00
13 lines
415 B
C#
Executable File
13 lines
415 B
C#
Executable File
using System.Web.Http;
|
|
using System.Web.Mvc;
|
|
|
|
namespace pnp.api.elevatedprivileges {
|
|
public class WebApiApplication : System.Web.HttpApplication {
|
|
protected void Application_Start() {
|
|
AreaRegistration.RegisterAllAreas();
|
|
GlobalConfiguration.Configure(WebApiConfig.Register);
|
|
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
|
|
}
|
|
}
|
|
}
|