mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-08 22:14:53 +00:00
16 lines
453 B
C#
Executable File
16 lines
453 B
C#
Executable File
using System.Web.Http;
|
|
|
|
namespace pnp.api.contosoorders {
|
|
public static class WebApiConfig {
|
|
public static void Register(HttpConfiguration config) {
|
|
config.MapHttpAttributeRoutes();
|
|
|
|
config.Routes.MapHttpRoute(
|
|
name: "DefaultApi",
|
|
routeTemplate: "api/{controller}/{id}",
|
|
defaults: new { id = RouteParameter.Optional }
|
|
);
|
|
}
|
|
}
|
|
}
|