Only the admin user (sudo) is allowed to send notifications to other
users. The normal users can only send notifications to themselves.
This is to prevent attackers to craft malicious notifications and send
them to other users using RPC.
Correction based on the idea of @hbrunn
- Use the 'session' class of the JS Framework (session no lounger bound
to web client)
- Test change: compare emitted & received messages based on content, not
order. Using string comparison raises false positives.
Fix a check when comparing a user count with items within a mock call.
The previous method was succeeding by pure luck because OCA test
databases contain 2 users, which happens to be the amount of items
within a mock "call_args" (it contains args + kwargs).
The problems found on Legacy Dialogs are the next:
1. The modal can't be dragged
2. The button for extending and reduce the modal is doing nothing
3. The x for close the modal is showed twice
You can test it with dialogs showed on Vault module
[IMP] web_dialog_size: Migration to 16.0
[REM] Remove duplicate configuration readme file
[FIX] Make it work for normal dialogs also
[FIX] SelectCreateDialog
precommit
It is important to let users decide their default dialog size. Some have ultrawide monitors and this module does more harm than benefit.
Here I add such task to roadmap, to avoid forgetting about it.
@Tecnativa
Checking result of rpc call, `dialog_maximize`, will end to be always `true` as the method will return a json: `{'dialog_maximize': false }`. So i changed the test to test the value of json key `dialog_maximize`
This addon had 2 problems after migrating to v11:
1. One call to backend's `ir.config_parameter.get_param` was done for
each instantiated dialog, while the setting served for the whole
session equally.
2. That model is now readable only by admin users, so non-admins
couldn't use the default at all.
Fixed now.