2 Commits
1.1.1 ... main

Author SHA1 Message Date
Paweł Suwiński
17c7d55cd2 one-time login 2022-01-20 09:59:08 +01:00
Paweł Suwiński
ae7ab59097 docs: misspelled fields mapping PCRE pattern example (Fix #1) 2021-01-05 10:49:57 +01:00
5 changed files with 11 additions and 4 deletions

View File

@@ -1,5 +1,11 @@
# Changelog # Changelog
## [1.1.2] - 2021-01-05
### Fixed
- docs: misspelled fields mapping PCRE pattern example (issue #1)
## [1.1.1] - 2020-11-26 ## [1.1.1] - 2020-11-26

View File

@@ -1,5 +1,6 @@
TODO: TODO:
- one-time login link / form autosubmit
- configurable takeover of user authtype after self singup in other auth module - configurable takeover of user authtype after self singup in other auth module
in case of standard not email based logins in case of standard not email based logins
- js snippet to change login form (ex. to add "Generate OTP" button) on valid - js snippet to change login form (ex. to add "Generate OTP" button) on valid

View File

@@ -47,7 +47,7 @@ $string['fieldsmapping_help'] = <<<'EOT'
Pattern:<br /> Pattern:<br />
<pre> <pre>
'#/?P&lt;FIRST&gt;[^\.]+)\.(?P&lt;LAST&gt;[^@]+)@(?P&lt;COMPANY&gt;[^\.]+).*#', #/(?P&lt;FIRST&gt;[^\.]+)\.(?P&lt;LAST&gt;[^@]+)@(?P&lt;COMPANY&gt;[^\.]+).*#
</pre> </pre>
Mapping:<br /> Mapping:<br />

View File

@@ -47,7 +47,7 @@ $string['fieldsmapping_help'] = <<<'EOT'
Wzorzec:<br /> Wzorzec:<br />
<pre> <pre>
'#/?P&lt;FIRST&gt;[^\.]+)\.(?P&lt;LAST&gt;[^@]+)@(?P&lt;COMPANY&gt;[^\.]+).*#', #/(?P&lt;FIRST&gt;[^\.]+)\.(?P&lt;LAST&gt;[^@]+)@(?P&lt;COMPANY&gt;[^\.]+).*#
</pre> </pre>
Mapowanie:<br /> Mapowanie:<br />

View File

@@ -24,8 +24,8 @@
defined('MOODLE_INTERNAL') || die(); defined('MOODLE_INTERNAL') || die();
$plugin->version = 2020112600; // The current plugin version (Date: YYYYMMDDXX). $plugin->version = 2021010500; // The current plugin version (Date: YYYYMMDDXX).
$plugin->requires = 2018120304; // Requires this Moodle version. $plugin->requires = 2018120304; // Requires this Moodle version.
$plugin->component = 'auth_emailotp'; // Full name of the plugin (used for diagnostics). $plugin->component = 'auth_emailotp'; // Full name of the plugin (used for diagnostics).
$plugin->maturity = MATURITY_STABLE; $plugin->maturity = MATURITY_STABLE;
$plugin->release = '1.1.1'; $plugin->release = '1.1.2';