mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00

* SM-1146: SM Organization Counts for Projects, Secrets, Machine Accounts * SM-1146: Project total counts * SM-1146: models object renames * SM-1146: Service Account total counts * SM-1146: Unit test coverage for counts controller * SM-1146: Counts controller simplification, UT update * SM-1146: Service Account total counts from Service Account auth user * SM-1146: Integration Tests for total counts controller * SM-1146: Explicitly denying access for Service Accounts * SM-1146: Fix broken ProjectsController integration test * SM-1146: Integration tests for counts controller * SM-1146: Explicitly denying access for Service Accounts cleanup * SM-1146: Test cleanup * SM-1146: PR review comments fix * SM-1146: People, Service Accounts positive count on write access * Update bitwarden_license/src/Commercial.Infrastructure.EntityFramework/SecretsManager/Repositories/ProjectRepository.cs Co-authored-by: Thomas Avery <43214426+Thomas-Avery@users.noreply.github.com> --------- Co-authored-by: Thomas Avery <43214426+Thomas-Avery@users.noreply.github.com>
11 lines
207 B
C#
11 lines
207 B
C#
namespace Bit.Core.SecretsManager.Models.Data;
|
|
|
|
public class ServiceAccountCounts
|
|
{
|
|
public int Projects { get; set; }
|
|
|
|
public int People { get; set; }
|
|
|
|
public int AccessTokens { get; set; }
|
|
}
|