mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 12:40:22 -05:00
21 lines
611 B
C#
21 lines
611 B
C#
using System.Collections.Generic;
|
|
using IdentityServer4.Models;
|
|
|
|
namespace Bit.Core.IdentityServer
|
|
{
|
|
public class ApiScopes
|
|
{
|
|
public static IEnumerable<ApiScope> GetApiScopes()
|
|
{
|
|
return new List<ApiScope>
|
|
{
|
|
new ApiScope("api", "API Access"),
|
|
new ApiScope("api.push", "API Push Access"),
|
|
new ApiScope("api.licensing", "API Licensing Access"),
|
|
new ApiScope("api.organization", "API Organization Access"),
|
|
new ApiScope("internal", "Internal Access")
|
|
};
|
|
}
|
|
}
|
|
}
|