Configuration Controllers with initial implementation, no authentication
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Net; | |
using System.Net.Http; | |
using System.Web.Http; | |
namespace Itsp365.InvoiceFormApp.Api.Api.Controllers | |
{ | |
public class ConfigurationController : ApiController | |
{ | |
public IDictionary<string,string> Get() | |
{ | |
var configuration = new Dictionary<string, string>(); | |
configuration.Add("SharePointUrl", "https://ithinksharepointltd.sharepoint.com/sites/dev"); | |
return configuration; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment