mirror of
https://github.com/bitwarden/server
synced 2025-12-19 17:53:44 +00:00
18 lines
390 B
C#
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);
|
|
}
|
|
}
|
|
}
|