Socket
Socket
Sign inDemoInstall

@availity/authorizations-angular

Package Overview
Dependencies
7
Maintainers
13
Versions
24
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @availity/authorizations-angular

Availity authorizations angular logic


Version published
Weekly downloads
0
decreased by-100%
Maintainers
13
Install size
12.9 kB
Created
Weekly downloads
 

Readme

Source

Angular Authorizations

A package providing a base authorizations class to help check which permissions a user has.

Version

Install

npm install @availity/authorizations-angular

Usage

add module to your app.

import AvailityAuthorizations from '@availity/authorizations-angular';

angular.module('app', [
  AvailityAuthorizations
])
.service('ExampleService', class ExampleService{
  static $inject = ['AvAuthorizations']
  constructor(AvAuthorizations) {
    this.AvAuthorizations = AvAuthorizations;
  }
});

Methods

For all methods, if no region is passed in, defaults to current region.

isAuthorized

isAuthorized(permissionId, region) resolves to true or false if the current user has access to this permissionId in this region.

isAnyAuthorized

isAnyAuthorized(permissionIds, region) resolves to true or false if the current user has access to any of these permissionIds in this region.

getPermission

getPermission(permissionId, region) resolves to the permission object for this permissionId in this region.

getPermissions

getPermissions(permissionIds, region) resolves to an array of permission objects for these permissionIds in this region.

getOrganizations

getOrganizations(permissionId, region) resolves to the organizations array for this permissionId, will be empty if not authorized

getPayers

getPayers(permissionId, organizationId, region) will check permissionId for an organization with organizationId and resolve to its resources or an empty array.

Authors

Kasey Powers

License

MIT

FAQs

Last updated on 03 Dec 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc