mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-01 05:15:36 +01:00
32 lines
796 B
C#
32 lines
796 B
C#
namespace Giants.WebApi.Controllers
|
|
{
|
|
using Giants.DataContract.V1;
|
|
using Giants.Services;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
[ApiController]
|
|
[ApiVersion("1.0")]
|
|
[ApiVersion("1.1")]
|
|
[Route("api/[controller]")]
|
|
public class CommunityController : ControllerBase
|
|
{
|
|
private readonly ICommunityService discordService;
|
|
|
|
public CommunityController(
|
|
ICommunityService communityService)
|
|
{
|
|
this.discordService = communityService;
|
|
}
|
|
|
|
[HttpGet]
|
|
public CommunityStatus GetDiscordStatus()
|
|
{
|
|
return new CommunityStatus
|
|
{
|
|
CommunityAppName = "Discord",
|
|
CommunityAppUri = this.discordService.GetDiscordUri()
|
|
};
|
|
}
|
|
}
|
|
}
|