Skip to content

Commit

Permalink
fix(people): rename person filename to people
Browse files Browse the repository at this point in the history
  • Loading branch information
akoushke committed Aug 20, 2019
1 parent 728bc4b commit 82d9731
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
19 changes: 10 additions & 9 deletions src/adapters/PeopleAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,17 @@ export const PersonStatus = {
export default class PeopleAdapter extends WebexAdapter {
/**
* A Person object with details about the person.
*
* @typedef {Object} Person
* @property {string} ID The person identifier.
* @property {Array.<string>} emails An array of emails for the person.
* @property {string} displayName The name to be displayed for the person.
* @property {string} firstName The first name of the person.
* @property {string} lastName The last name of the person.
* @property {string} nickName The short name for the person.
* @property {string} avatar The full url to the person's avatar.
* @property {string} orgID The ID of the organization the person belongs to.
* @property {null|PersonStatus} status The presence status of the user. @see PersonStatus enum
* @property {string} ID The person identifier.
* @property {Array.<string>} emails An array of emails for the person.
* @property {string} displayName The name to be displayed for the person.
* @property {string} firstName The first name of the person.
* @property {string} lastName The last name of the person.
* @property {string} nickName The short name for the person.
* @property {string} avatar The full url to the person's avatar.
* @property {string} orgID The ID of the organization the person belongs to.
* @property {null|PersonStatus} status The presence status of the user. @see PersonStatus enum
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion src/adapters/PeopleJSONAdapter.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import person from './../data/person';
import person from './../data/people';
import PeopleJSONAdapter from './PeopleJSONAdapter';

describe('People Adapter Interface', () => {
Expand Down

0 comments on commit 82d9731

Please sign in to comment.