using System.Collections.Generic; using IdentityServer4.Models; namespace Bit.Core.IdentityServer { public class ApiScopes { public static IEnumerable GetApiScopes() { return new List { 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") }; } } }