// Copyright Abridged, Inc. 2021,2024. All Rights Reserved. // Node module: @collabland/api-security // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT import {BindingKey} from '@loopback/core'; import {UserProfile} from '@loopback/security'; export const AUTHORIZATION_PRINCIPALS = BindingKey.create( 'authorization.principals', ); export const AUTHORIZATION_ROLES = BindingKey.create>( 'authorization.roles', ); export const AUTHORIZATION_SCOPES = BindingKey.create>( 'authorization.scopes', );