1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 23:52:50 -05:00

chore: update LastActivityDate on installation token refresh (#5081)

This commit is contained in:
Addison Beck
2025-01-06 16:22:03 -05:00
committed by GitHub
parent cd7c4bf6ce
commit 90f7bfe63d
13 changed files with 229 additions and 7 deletions

View File

@ -6,6 +6,15 @@ using Microsoft.AspNetCore.Mvc;
namespace Bit.Api.Platform.Installations;
/// <summary>
/// Routes used to manipulate `Installation` objects: a type used to manage
/// a record of a self hosted installation.
/// </summary>
/// <remarks>
/// This controller is not called from any clients. It's primarily referenced
/// in the `Setup` project for creating a new self hosted installation.
/// </remarks>
/// <seealso>Bit.Setup.Program</seealso>
[Route("installations")]
[SelfHosted(NotSelfHostedOnly = true)]
public class InstallationsController : Controller