Skip to content

Commit

Permalink
feat(peopleadapter): extend WebexAdapter
Browse files Browse the repository at this point in the history
  • Loading branch information
adamweeks committed Aug 16, 2019
1 parent d244e13 commit 3be7202
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/adapters/PeopleAdapter.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import {throwError} from 'rxjs';

import WebexAdapter from './WebexAdapter';

/**
* This is a base class that defines the interface that maps people data.
* Developers that want to extend `PeopleAdapter` must implement all of its methods,
* adhering to the exact parameters and structure of the returned objects
* adhering to the exact parameters and structure of the returned objects.
*/
export default class PeopleAdapter {
export default class PeopleAdapter extends WebexAdapter {
/**
* The status a person can have.
* @typedef {null|'active'|'bot'|'call'|'dnd'|'group'|'inactive'|'meeting'|'ooo'|'presenting'|'self'|'typing'} PersonStatus
Expand Down

0 comments on commit 3be7202

Please sign in to comment.