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

(-)a/installer/data/mysql/atomicupdate/bug_29894.pl (+16 lines)
Line 0 Link Here
1
use Modern::Perl;
2
3
return {
4
    bug_number => 29894,
5
    description => "Add 2FA (de)registering notices",
6
    up => sub {
7
        my ($args) = @_;
8
        my ($dbh, $out) = @$args{qw(dbh out)};
9
        $dbh->do( q{
10
INSERT IGNORE INTO letter
11
(module, code, branchcode, name, is_html, title, content, message_transport_type, lang) VALUES
12
('members', '2FA_DEREGISTER', '', 'Confirmation of deregistering two factor authentication', 1, 'Confirmation of deregistering two factor authentication', '<p>Dear [% borrower.firstname %] [% borrower.surname %],</p>\r\n<p>This is to confirm that we deregistered two factor authentication for you.</p>\r\n<p>If you did not deregister, someone else may be using your account. Please contact technical support.</p>\r\n<p>Your library</p>', 'email', 'default'),
13
('members', '2FA_REGISTER', '', 'Confirmation of registering two factor authentication', 1, 'Confirmation of registering two factor authentication', '<p>Dear [% borrower.firstname %] [% borrower.surname %],</p>\r\n<p>This is to confirm that we registered two factor authentication for you.</p>\r\n<p>If you did not register, someone else may be using your account. Please contact technical support.</p>\r\n<p>Your library</p>', 'email', 'default')
14
        });
15
    },
16
};
(-)a/installer/data/mysql/en/mandatory/sample_notices.yml (-1 / +28 lines)
Lines 1576-1578 tables: Link Here
1576
            - "This item must be renewed at the library."
1576
            - "This item must be renewed at the library."
1577
            - "[% END %]"
1577
            - "[% END %]"
1578
            - "[% END %]"
1578
            - "[% END %]"
1579
- 
1579
1580
        - module: members
1581
          code: 2FA_DEREGISTER
1582
          branchcode: ""
1583
          name: "Confirmation of deregistering two factor authentication"
1584
          is_html: 1
1585
          title: "Confirmation of deregistering two factor authentication"
1586
          message_transport_type: email
1587
          lang: default
1588
          content:
1589
            - "<p>Dear [% borrower.firstname %] [% borrower.surname %],</p>"
1590
            - "<p>This is to confirm that we deregistered two factor authentication for you.</p>"
1591
            - "<p>If you did not deregister, someone else may be using your account. Please contact technical support.</p>"
1592
            - "<p>Your library</p>"
1593
1594
        - module: members
1595
          code: 2FA_REGISTER
1596
          branchcode: ""
1597
          name: "Confirmation of registering two factor authentication"
1598
          is_html: 1
1599
          title: "Confirmation of registering two factor authentication"
1600
          message_transport_type: email
1601
          lang: default
1602
          content:
1603
            - "<p>Dear [% borrower.firstname %] [% borrower.surname %],</p>"
1604
            - "<p>This is to confirm that we registered two factor authentication for you.</p>"
1605
            - "<p>If you did not register, someone else may be using your account. Please contact technical support.</p>"
1606
            - "<p>Your library</p>"

Return to bug 29894