diff --git a/src/Api/Public/Controllers/GroupsController.cs b/src/Api/Public/Controllers/GroupsController.cs new file mode 100644 index 0000000000..4b8db4fecc --- /dev/null +++ b/src/Api/Public/Controllers/GroupsController.cs @@ -0,0 +1,17 @@ +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); + } + } +}