Skip to content

Instantly share code, notes, and snippets.

@seangwright
Created April 24, 2016 02:49
Show Gist options
  • Save seangwright/83af9dc667e6fa8035c1bcc7138b597a to your computer and use it in GitHub Desktop.
Save seangwright/83af9dc667e6fa8035c1bcc7138b597a to your computer and use it in GitHub Desktop.
WebApiModule.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using CMS.DataEngine;
using System.Web.Http;
namespace WiredViews.AQU04.Web.Api.Kentico
{
/// <summary>
/// Kentico module for Web API Integration
/// </summary>
public class WebApiModule : Module
{
/// <summary>
/// Creates a new Web API module with metadata
/// </summary>
public WebApiModule() : base(new WebApiModuleMetadata()) { }
/// <summary>
/// Initializes the module. Called when the application starts.
/// </summary>
protected override void OnInit()
{
base.OnInit();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment