Skip to content

Commit

Permalink
Move endpoints to Calendar-Assistant API project (#25)
Browse files Browse the repository at this point in the history
### Summary & Motivation
Move the endpoints from the Core project to the Calendar-Assistant API
project because `IEndpoints` are only picked up by Dependency Injection
when they reside in the API project. This adjustment ensures that the
Dependency Injection system properly registers and manages these
endpoints.

### Atomic Changes
- Move endpoints to Calendar-Assistant API project

### Checklist

- [x] I have added a Label to the pull-request
- [x] I have added tests, and done manual regression tests
- [x] I have updated the documentation, if necessary

---------

Co-authored-by: Marco van Kimmenade <[email protected]>
  • Loading branch information
2 people authored and tjementum committed Sep 11, 2024
1 parent e6020cb commit 7a844a8
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Routing;
using Microsoft.Bot.Builder;
using Microsoft.Bot.Builder.Integration.AspNet.Core;
using PlatformPlatform.SharedKernel.Endpoints;

namespace Moment42.CalendarAssistant.Conversations;
namespace Moment42.CalendarAssistant.Api.Endpoints;

public sealed class ConversationsEndpoints : IEndpoints
{
Expand Down

0 comments on commit 7a844a8

Please sign in to comment.