Version Description
- New filter to override default permission_callback in rest-api method to call cron
Download this release
Release Info
Developer | carazo |
Plugin | Import users from CSV with meta |
Version | 1.17.3.1 |
Comparing to | |
See all releases |
Code changes from version 1.17.3 to 1.17.3.1
- classes/rest-api.php +1 -1
- import-users-from-csv-with-meta.php +1 -1
- readme.txt +4 -1
classes/rest-api.php
CHANGED
@@ -12,7 +12,7 @@ class ACUI_REST_API{
|
|
12 |
'methods' => 'GET',
|
13 |
'callback' => array( $this, 'fire_cron' ),
|
14 |
'permission_callback' => function () {
|
15 |
-
return current_user_can( apply_filters( 'acui_capability', 'create_users' ) );
|
16 |
}
|
17 |
) );
|
18 |
}
|
12 |
'methods' => 'GET',
|
13 |
'callback' => array( $this, 'fire_cron' ),
|
14 |
'permission_callback' => function () {
|
15 |
+
return apply_filters( 'acui_rest_api_permission_callback', current_user_can( apply_filters( 'acui_capability', 'create_users' ) ) );
|
16 |
}
|
17 |
) );
|
18 |
}
|
import-users-from-csv-with-meta.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Import and export users and customers
|
4 |
Plugin URI: https://www.codection.com
|
5 |
Description: Using this plugin you will be able to import and export users or customers choosing many options and interacting with lots of other plugins
|
6 |
-
Version: 1.17.3
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
3 |
Plugin Name: Import and export users and customers
|
4 |
Plugin URI: https://www.codection.com
|
5 |
Description: Using this plugin you will be able to import and export users or customers choosing many options and interacting with lots of other plugins
|
6 |
+
Version: 1.17.3.1
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://codection.com/go/donate-import-users-from-csv-with-meta/
|
|
4 |
Tags: csv, import, importer, meta data, meta, user, users, user meta, editor, profile, custom, fields, delimiter, update, insert
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 5.6
|
7 |
-
Stable tag: 1.17.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -103,6 +103,9 @@ Plugin will automatically detect:
|
|
103 |
|
104 |
== Changelog ==
|
105 |
|
|
|
|
|
|
|
106 |
= 1.17.3 =
|
107 |
* New feature added actions, now you can assign posts while you are importing users
|
108 |
* Code improvements
|
4 |
Tags: csv, import, importer, meta data, meta, user, users, user meta, editor, profile, custom, fields, delimiter, update, insert
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 5.6
|
7 |
+
Stable tag: 1.17.3.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
103 |
|
104 |
== Changelog ==
|
105 |
|
106 |
+
= 1.17.3.1 =
|
107 |
+
* New filter to override default permission_callback in rest-api method to call cron
|
108 |
+
|
109 |
= 1.17.3 =
|
110 |
* New feature added actions, now you can assign posts while you are importing users
|
111 |
* Code improvements
|