Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;

namespace O2NextGen.Mobile.BFF.Core.Features.CGen
{
[Route("api/features/c-gen/[controller]")]
public class CertificatesController : Controller
{
// GET: api/features/c-gen/certificates
[HttpGet]
public IActionResult Get()
{
return Ok();
}
}
}

Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;

namespace O2NextGen.Mobile.BFF.Core.Features.CGen
{
[Route("api/features/c-gen/[controller]")]
public class VersionController : Controller
{
// GET: api/features/c-gen/version
[HttpGet]
public IActionResult Get()
{
return Ok();
}
}
}

Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;

namespace O2NextGen.Web.BFF.Core.Features.ESender
{
[Route("api/features/e-sender/[controller]")]
public class VersionController : Controller
{
// GET: api/features/e-sender/version
[HttpGet]
public IActionResult Get()
{
return Ok();
}
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,19 @@

<ItemGroup>
<Folder Include="wwwroot\" />
<Folder Include="Features\" />
<Folder Include="Features\C-Gen\" />
<Folder Include="Features\E-Sender\" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.1.2" PrivateAssets="All" />
</ItemGroup>

<ItemGroup>
<None Remove="Features\" />
<None Remove="Features\C-Gen\" />
<None Remove="Features\E-Sender\" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,11 @@ public Startup(IConfiguration configuration)

public IConfiguration Configuration { get; }

// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
}

// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
Expand Down