Skip to content
This repository has been archived by the owner on Jan 4, 2024. It is now read-only.

Commit

Permalink
ACL plugin model for issue #11.
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel Ramos committed Sep 15, 2016
1 parent 1b2bd29 commit ddd6ae8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/app/shared/models/plugins/acl.model.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { BaseModel } from '../base.model';

export class ACLModelConfig extends BaseModel {
name: string;
whitelist: string;
blacklist: string;
}

export class ACLModel extends BaseModel {
group: string;
}
1 change: 1 addition & 0 deletions src/app/shared/models/plugins/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ export * from './oauth.model';
export * from './hmac.model';
export * from './jwt.model';
export * from './ldap.model';
export * from './acl.model';

0 comments on commit ddd6ae8

Please sign in to comment.