[
https://issues.apache.org/jira/browse/OPENMEETINGS-2689?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17429754#comment-17429754
]
Uwe Simon commented on OPENMEETINGS-2689:
-----------------------------------------
Sorry I forgot to meantion.
I created the user and used room 7 of the default installation via API. and
then used the generated link.
By the way: In the docu of the openmeetings-node-client does the returned data
structure does not match the impamentation (data.serviceResult must be added to
access the result message).
{code:java}
(async () => {
console.log("---------");
const userService = new UserServiceApi(config);
const loginResult = await userService.login(USERNAME, PASSWORD);
console.dir(loginResult.data);
const sessionId = loginResult.data.serviceResult.message;
const hashResult = await userService.getRoomHash(sessionId, {
firstname: "Uwe",
lastname: "Simon",
externalId: "uniqueId1",
externalType: "TestApp",
login: "uwesimon",
email: "[email protected]"
}, {
roomId: 7,
moderator: true
});
console.dir(hashResult.data);
const loginUrl =
`${BASE_URL}/hash?secure=${hashResult.data.serviceResult.message}`
console.log(loginUrl);
console.log("---------");
})();
---------
{
serviceResult: { message: '72c9d88e-3f20-49f6-b96a-ba1c6b4059e1', type:
'SUCCESS' }
}
{
serviceResult: { message: 'ae56a039-44eb-4b80-ae75-c29795a7d8bd', type:
'SUCCESS' }
}
https://localhost:5443/openmeetings/hash?secure=ae56a039-44eb-4b80-ae75-c29795a7d8bd
---------
{code}
> Room: layout corrupted for Chrome
> ---------------------------------
>
> Key: OPENMEETINGS-2689
> URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2689
> Project: Openmeetings
> Issue Type: Bug
> Components: UI
> Affects Versions: 7.0.0
> Reporter: Uwe Simon
> Assignee: Maxim Solodovnik
> Priority: Critical
> Attachments: image-2021-10-15-21-47-20-165.png
>
>
> In Chrome 94.0 the layout of the room is corrupted. InFirefox it looks OK.
> Workarround:
> in custom.css
> {code:java}
> .room-block .sb-wb .wb-block .tools {
> float: right
> }{code}
> !image-2021-10-15-21-47-20-165.png!
--
This message was sent by Atlassian Jira
(v8.3.4#803005)