extend ProfileState interface with optional groups

This commit is contained in:
Denys Vuika 2019-04-12 16:45:04 +01:00
parent 68f674c0fd
commit 578f00d270

View File

@ -15,6 +15,8 @@
* limitations under the License. * limitations under the License.
*/ */
import { Group } from '@alfresco/js-api';
export interface ProfileState { export interface ProfileState {
id: string; id: string;
isAdmin: boolean; isAdmin: boolean;
@ -22,4 +24,5 @@ export interface ProfileState {
lastName: string; lastName: string;
userName?: string; userName?: string;
initials?: string; initials?: string;
groups?: Group[];
} }