[AAE-5021] Add listPeople method to PeopleContentService (#6947)

* [AAE-5021] Add listPeople method to PeopleContentService

* lint

* Replace Person with EcmUserModel

* Update imports to @alfresco/adf-core

* Change to const + lint
This commit is contained in:
Thomas Hunter
2021-04-28 17:50:53 +02:00
committed by GitHub
parent 42c81e46bb
commit 9cbae9abd8
11 changed files with 124 additions and 46 deletions

View File

@@ -15,13 +15,13 @@
* limitations under the License.
*/
import { Person } from '@alfresco/js-api';
import { EcmUserModel } from './ecm-user.model';
export class CommentModel {
id: number;
message: string;
created: Date;
createdBy: Person;
createdBy: EcmUserModel;
isSelected: boolean;
constructor(obj?: any) {