Skip to content
This repository has been archived by the owner on Aug 25, 2023. It is now read-only.

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
michielbdejong committed Sep 3, 2019
1 parent 3eb1ce0 commit 4a04dd3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/exports.ts
Expand Up @@ -45,7 +45,7 @@ export class AclBasedAuthorizer implements IAuthorizer {
constructor (resourceStore: IResourceStore) {
this.resourceStore = resourceStore
}
async ensurePermissions(agent: ICredentials,
async ensurePermissions (agent: ICredentials,
target: IResourceIdentifier,
requiredPermissions: PermissionSet
): Promise<boolean> {
Expand Down
4 changes: 2 additions & 2 deletions src/lib/core/WacLdp.ts
Expand Up @@ -22,8 +22,8 @@ import { BlobTree } from '../storage/BlobTree'
import { AclManager } from '../authorization/AclManager'
import { objectToStream, makeResourceData } from '../rdf/ResourceDataUtils'
import IHttpHandler from 'solid-server-ts/src/ldp/IHttpHandler'
import IOperationFactory from 'solid-server-ts/src/ldp/operations/IOperationFactory';
import IAuthorizer from 'solid-server-ts/src/auth/IAuthorizer';
import IOperationFactory from 'solid-server-ts/src/ldp/operations/IOperationFactory'
import IAuthorizer from 'solid-server-ts/src/auth/IAuthorizer'

export const BEARER_PARAM_NAME = 'bearer_token'

Expand Down

0 comments on commit 4a04dd3

Please sign in to comment.