1
0
mirror of https://github.com/bitwarden/server synced 2025-12-19 17:53:44 +00:00
Files
server/src/Api/Public/Controllers/GroupsController.cs
2019-02-26 22:06:39 -05:00

18 lines
390 B
C#

using System;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace Bit.Api.Public.Controllers
{
[Route("public/groups")]
[Authorize("Organization")]
public class GroupsController : Controller
{
[HttpGet("{id}")]
public JsonResult Get(string id)
{
return new JsonResult("Hello " + id);
}
}
}