Compare commits
2 commits
b1438e5ca1
...
446945e7f9
Author | SHA1 | Date | |
---|---|---|---|
446945e7f9 | |||
8d71b98899 |
4 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
0.3.0
|
||||
|
||||
* Improve the initial linking of Customers to Mailboxes, to include Customers linked with several Conversations.
|
||||
|
||||
0.2.0
|
||||
|
||||
* On the initial package install, link existing Customers to Mailboxes.
|
||||
|
|
|
@ -19,7 +19,7 @@ You have been warned.
|
|||
### Install the package with composer
|
||||
|
||||
```
|
||||
composer require "millions-missing-france/freescout-restricted-customers" "0.2.0"
|
||||
composer require "millions-missing-france/freescout-restricted-customers" "0.3.0"
|
||||
```
|
||||
|
||||
### Edit the application routes
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "millions-missing-france/freescout-restricted-customers",
|
||||
"description": "Freescout restricted customers - Restrict access to Freescout customers to specific mailboxes",
|
||||
"version": "0.2.0",
|
||||
"version": "0.333",
|
||||
"type": "library",
|
||||
"license": ["AGPL-3.0-only"],
|
||||
"authors": [
|
||||
|
|
|
@ -91,7 +91,8 @@ class Customer extends BaseCustomer {
|
|||
public function mailboxesThroughConversations() {
|
||||
return $this
|
||||
->conversations
|
||||
->pluck('mailbox');
|
||||
->pluck('mailbox')
|
||||
->unique();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue