You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.
To specify a permission scope, use the SkyAuthHttp service in @blackbaud/skyux-builder/runtime and call its withScope() method, then chain the get()/post()/etc. to that method. Example:
import { SkyAuthHttp } from '@blackbaud/skyux-builder/runtime';
export class MyService
constructor(private http: SkyAuthHttp) { }
public getThings() {
return this.http
.withScope('my_permission_scope')
.get(someUrl)
.map((response)...
}
SPAs should be able to define a permission scope as a set of permissions to be retrieved when making authenticated calls via
SkyAuthHttp
.The text was updated successfully, but these errors were encountered: