This commit is contained in:
the-djmaze 2022-04-29 11:30:11 +02:00
parent 3522f76d37
commit 1dccfdba3b
4 changed files with 95 additions and 65 deletions

View file

@ -0,0 +1,19 @@
<?php
use \RainLoop\Exceptions\ClientException;
class ChangePasswordPoppassdPlugin extends \RainLoop\Plugins\AbstractPlugin
{
const
NAME = 'Change Password Poppassd',
VERSION = '2.15.0',
RELEASE = '2022-04-28',
REQUIRED = '2.15.1',
CATEGORY = 'Security',
DESCRIPTION = 'Extension to allow users to change their passwords through Poppassd';
public function Supported() : string
{
return 'Use Change Password plugin';
}
}