View | Details | Raw Unified | Return to bug 19133
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/Bug-19133-2_Add_permission_get_password_reset_uuid.perl (-1 / +1 lines)
Lines 2-8 $DBversion = 'XXX'; # will be replaced by the RM Link Here
2
if( CheckVersion( $DBversion ) ) {
2
if( CheckVersion( $DBversion ) ) {
3
3
4
    $dbh->do(q{
4
    $dbh->do(q{
5
        INSERT INTO permissions
5
        INSERT IGNORE INTO permissions
6
            (module_bit, code, description)
6
            (module_bit, code, description)
7
        VALUES
7
        VALUES
8
            ( 4, 'get_password_reset_uuid', 'Allow the user to get password reset uuid when recovering passwords. Useful for third party service integrations that wish to do something with the uuid, such as handle emails themselves instead of Koha.');
8
            ( 4, 'get_password_reset_uuid', 'Allow the user to get password reset uuid when recovering passwords. Useful for third party service integrations that wish to do something with the uuid, such as handle emails themselves instead of Koha.');
(-)a/installer/data/mysql/atomicupdate/Bug-19133-Password-recovery-custom-link-allowed-hosts.perl (-2 / +1 lines)
Lines 2-8 $DBversion = 'XXX'; # will be replaced by the RM Link Here
2
if( CheckVersion( $DBversion ) ) {
2
if( CheckVersion( $DBversion ) ) {
3
3
4
    $dbh->do(q{
4
    $dbh->do(q{
5
        INSERT INTO systempreferences
5
        INSERT IGNORE INTO systempreferences
6
            (variable, value, options, explanation, type)
6
            (variable, value, options, explanation, type)
7
        VALUES
7
        VALUES
8
            ('OpacResetPasswordAllowedHosts', '', '', 'Allowed external host names for password reset in third party service. Separate list by whitespace, comma or |', 'free');
8
            ('OpacResetPasswordAllowedHosts', '', '', 'Allowed external host names for password reset in third party service. Separate list by whitespace, comma or |', 'free');
9
- 

Return to bug 19133