Compare commits
No commits in common. "bcaaed05663ac19f329cb21c84e768d31a696ed5" and "69c518086e4b11c2570177cb52600752a785177b" have entirely different histories.
bcaaed0566
...
69c518086e
4 changed files with 2 additions and 19 deletions
|
@ -1,7 +1,3 @@
|
||||||
1.1.0
|
|
||||||
|
|
||||||
* Add compatibility with MMFCustomersGroups.
|
|
||||||
|
|
||||||
1.0.1
|
1.0.1
|
||||||
|
|
||||||
* Fix the fetching of e-mails including attachments.
|
* Fix the fetching of e-mails including attachments.
|
||||||
|
|
|
@ -68,19 +68,6 @@ class MMFRestrictedCustomersServiceProvider extends ServiceProvider {
|
||||||
$priority = 20,
|
$priority = 20,
|
||||||
$arguments = 3
|
$arguments = 3
|
||||||
);
|
);
|
||||||
|
|
||||||
// Filter the list of Customers returned by MMFCustomersGroups when creating/editing a Customers Group.
|
|
||||||
Eventy::addFilter('mmfcustomergroups.groups.create.customers-query', function($customers_query) {
|
|
||||||
$user = auth()->user();
|
|
||||||
// Do not restrict the query if the current user is an admin.
|
|
||||||
if ( $user->role != User::ROLE_ADMIN ) {
|
|
||||||
// Get IDs of mailboxes the current user is allowed to access.
|
|
||||||
$mailboxes = $user->mailboxesIdsCanView();
|
|
||||||
// Restrict the query to the Customers the current user is allowed to access.
|
|
||||||
$customers_query->whereIn('customers.mailbox_id', $mailboxes);
|
|
||||||
}
|
|
||||||
return $customers_query;
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "millions-missing-france/freescout-restricted-customers",
|
"name": "millions-missing-france/freescout-restricted-customers",
|
||||||
"description": "Freescout restricted customers - Restrict access to Freescout customers to specific mailboxes",
|
"description": "Freescout restricted customers - Restrict access to Freescout customers to specific mailboxes",
|
||||||
"version": "1.1.0",
|
"version": "1.0.1",
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"license": ["AGPL-3.0-only"],
|
"license": ["AGPL-3.0-only"],
|
||||||
"authors": [
|
"authors": [
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "MMFRestrictedCustomers",
|
"name": "MMFRestrictedCustomers",
|
||||||
"alias": "mmfrestrictedcustomers",
|
"alias": "mmfrestrictedcustomers",
|
||||||
"description": "Freescout restricted customers - Restrict access to Freescout customers to specific mailboxes",
|
"description": "Freescout restricted customers - Restrict access to Freescout customers to specific mailboxes",
|
||||||
"version": "1.1.0",
|
"version": "1.0.1",
|
||||||
"detailsUrl": "",
|
"detailsUrl": "",
|
||||||
"author": "Millions Missing FRANCE",
|
"author": "Millions Missing FRANCE",
|
||||||
"authorUrl": "info@millionsmissing.fr",
|
"authorUrl": "info@millionsmissing.fr",
|
||||||
|
|
Loading…
Reference in a new issue