mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-09 14:34:58 +00:00
16 lines
453 B
C#
16 lines
453 B
C#
|
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 }
|
|||
|
);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|