diff --git a/lib/extensions/src/lib/store/states/profile.state.ts b/lib/extensions/src/lib/store/states/profile.state.ts index e41706107c..4b6443c8e8 100644 --- a/lib/extensions/src/lib/store/states/profile.state.ts +++ b/lib/extensions/src/lib/store/states/profile.state.ts @@ -15,6 +15,8 @@ * limitations under the License. */ +import { Group } from '@alfresco/js-api'; + export interface ProfileState { id: string; isAdmin: boolean; @@ -22,4 +24,5 @@ export interface ProfileState { lastName: string; userName?: string; initials?: string; + groups?: Group[]; }