-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Backwards compatibility patch - Workflow agent/customer forgot passwo…
…rd event proxies
- Loading branch information
akshay kumar
committed
Oct 23, 2019
1 parent
c2c4dfb
commit 617b720
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
|
||
namespace Webkul\UVDesk\CoreFrameworkBundle\Workflow\Events\Agent; | ||
|
||
use Webkul\UVDesk\AutomationBundle\Workflow\FunctionalGroup; | ||
use Webkul\UVDesk\CoreFrameworkBundle\Workflow\Events\UserForgotPassword as UserForgotPasswordEvent; | ||
|
||
class ForgotPassword extends UserForgotPasswordEvent | ||
{ | ||
public static function getDescription() | ||
{ | ||
return 'Agent Forgot Password'; | ||
} | ||
|
||
public static function getFunctionalGroup() | ||
{ | ||
return FunctionalGroup::AGENT; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
|
||
namespace Webkul\UVDesk\CoreFrameworkBundle\Workflow\Events\Customer; | ||
|
||
use Webkul\UVDesk\AutomationBundle\Workflow\FunctionalGroup; | ||
use Webkul\UVDesk\CoreFrameworkBundle\Workflow\Events\UserForgotPassword as UserForgotPasswordEvent; | ||
|
||
class ForgotPassword extends UserForgotPasswordEvent | ||
{ | ||
public static function getDescription() | ||
{ | ||
return 'Customer Forgot Password'; | ||
} | ||
|
||
public static function getFunctionalGroup() | ||
{ | ||
return FunctionalGroup::CUSTOMER; | ||
} | ||
} |