-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c56a8df
commit ac73e6d
Showing
20 changed files
with
51 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using KitX.Shared.CSharp.Plugin; | ||
using Microsoft.AspNetCore.Mvc; | ||
|
||
namespace KitX.Website.Backend.Api.Controllers; | ||
|
||
[ApiController] | ||
[Route("[controller]")] | ||
public class KxpController : ControllerBase | ||
{ | ||
private readonly ILogger<KxpController> _logger; | ||
|
||
public KxpController(ILogger<KxpController> logger) | ||
{ | ||
_logger = logger; | ||
} | ||
|
||
[HttpGet(Name = "QueryKxp")] | ||
public IEnumerable<PluginInfo> Get() | ||
{ | ||
return Enumerable.Range(1, 5).Select(index => new PluginInfo()) | ||
.ToArray(); | ||
} | ||
} |
6 changes: 3 additions & 3 deletions
6
...d Api/Modules/Accounts/AccountsManager.cs → ...d/Api/Modules/Accounts/AccountsManager.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...nd Api/Modules/Accounts/AccountsModule.cs → ...nd/Api/Modules/Accounts/AccountsModule.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...nd Api/Modules/DataBase/DataBaseModule.cs → ...nd/Api/Modules/DataBase/DataBaseModule.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...Modules/DataBase/Interfaces/IConnector.cs → ...Modules/DataBase/Interfaces/IConnector.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
... Api/Modules/DataBase/MongoDbConnector.cs → .../Api/Modules/DataBase/MongoDbConnector.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ackend Api/Modules/Interfaces/IManager.cs → ...ackend/Api/Modules/Interfaces/IManager.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...Backend Api/Modules/Interfaces/IModule.cs → ...Backend/Api/Modules/Interfaces/IModule.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...site Backend Api/Modules/Kxp/KxpModule.cs → ...site Backend/Api/Modules/Kxp/KxpModule.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions
8
...ite Backend Api/Modules/ModulesManager.cs → ...ite Backend/Api/Modules/ModulesManager.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ckend/KitX Website Backend Api/Program.cs → KitX Website Backend/Api/Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
27 changes: 0 additions & 27 deletions
27
KitX Website Backend/KitX Website Backend Api/Controllers/WeatherForecastController.cs
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
KitX Website Backend/KitX Website Backend Api/KitX Website Backend Api.http
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters