We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33da039 commit 2c312b6Copy full SHA for 2c312b6
apps/meteor/app/api/server/v1/users.ts
@@ -426,7 +426,7 @@ API.v1.addRoute(
426
);
427
428
type UsersInfoResponseUser = IUser & {
429
- rooms?: Pick<ISubscription, 'rid' | 'name' | 't' | 'roles' | 'unread'>[];
+ rooms?: Pick<ISubscription, 'rid' | 'name' | 't' | 'roles' | 'unread' | 'federated'>[];
430
};
431
432
const usersInfoEndpoint = API.v1.get(
@@ -488,6 +488,7 @@ const usersInfoEndpoint = API.v1.get(
488
t: { type: 'string' },
489
roles: { type: 'array', items: { type: 'string' } },
490
unread: { type: 'number' },
491
+ federated: { type: 'boolean' },
492
},
493
required: ['rid', 't', 'unread'],
494
additionalProperties: false,
0 commit comments