-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #145 from techjoomla/j4x
J4x related bug fixes
- Loading branch information
Showing
11 changed files
with
36 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"com_api": { | ||
"3.0.0": { | ||
"3.0.2": { | ||
"com_api": { | ||
"version": "3.0.0", | ||
"version": "3.0.2", | ||
"repoUrl": "[email protected]:techjoomla/com_api.git", | ||
"branch": "j4x" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
CREATE TABLE IF NOT EXISTS `#__api_keys` ( | ||
`id` int(11) NOT NULL AUTO_INCREMENT, | ||
`userid` int(11) NOT NULL, | ||
`hash` varchar(255) NOT NULL, | ||
`domain` varchar(255) NOT NULL, | ||
`state` tinyint(1) NOT NULL, | ||
`checked_out` int(11) NOT NULL, | ||
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', | ||
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', | ||
`created_by` int(11) NOT NULL, | ||
`last_used` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', | ||
`per_hour` int(10) NOT NULL, | ||
`id` int(11) NOT NULL AUTO_INCREMENT, | ||
`userid` int(11) NOT NULL DEFAULT 0, | ||
`hash` varchar(255) NOT NULL DEFAULT '', | ||
`domain` varchar(255) NOT NULL DEFAULT '', | ||
`state` tinyint(1) NOT NULL DEFAULT 0, | ||
`checked_out` int(11) NOT NULL DEFAULT 0, | ||
`checked_out_time` datetime DEFAULT NULL, | ||
`created` datetime DEFAULT NULL, | ||
`created_by` int(11) NOT NULL DEFAULT 0, | ||
`last_used` datetime DEFAULT NULL, | ||
`per_hour` int(10) NOT NULL DEFAULT 0, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci; | ||
|
||
|
||
CREATE TABLE IF NOT EXISTS `#__api_logs` ( | ||
`id` bigint(20) NOT NULL AUTO_INCREMENT, | ||
`hash` varchar(255) NOT NULL, | ||
`ip_address` varchar(20) NOT NULL, | ||
`time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP, | ||
`id` bigint(20) NOT NULL AUTO_INCREMENT, | ||
`hash` varchar(255) NOT NULL DEFAULT '', | ||
`ip_address` varchar(20) NOT NULL DEFAULT '', | ||
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, | ||
`request_method` varchar(20) NOT NULL DEFAULT '', | ||
`request` varchar(255) NOT NULL, | ||
`post_data` text NOT NULL, | ||
`request` varchar(255) NOT NULL DEFAULT '', | ||
`post_data` text DEFAULT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<extension type="component" version="3.0" method="upgrade"> | ||
<name>com_api</name> | ||
<creationDate>20th Sep 2022</creationDate> | ||
<creationDate>11th Oct 2022</creationDate> | ||
<copyright>Copyright (C) 2009 - 2019 Techjoomla. All rights reserved.</copyright> | ||
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license> | ||
<author>Techjoomla</author> | ||
<authorEmail>[email protected]</authorEmail> | ||
<authorUrl>https://techjoomla.com</authorUrl> | ||
<version>3.0.1</version> | ||
<version>3.0.2</version> | ||
<description>Multi-purpose REST API framework for Joomla</description> | ||
<install> | ||
<!-- Runs on install --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,10 @@ | |
<author>Techjoomla</author> | ||
<authorEmail>[email protected]</authorEmail> | ||
<authorUrl>https://techjoomla.com</authorUrl> | ||
<creationDate>20th Sep 2022</creationDate> | ||
<creationDate>11th Oct 2022</creationDate> | ||
<copyright>Copyright (C) 2009 - 2019 Techjoomla. All rights reserved.</copyright> | ||
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license> | ||
<version>3.0.1</version> | ||
<version>3.0.2</version> | ||
|
||
<files> | ||
<filename plugin="tjapi">tjapi.php</filename> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,10 @@ | |
<author>Techjoomla</author> | ||
<authorEmail>[email protected]</authorEmail> | ||
<authorUrl>https://techjoomla.com</authorUrl> | ||
<creationDate>20th Sep 2022</creationDate> | ||
<creationDate>11th Oct 2022</creationDate> | ||
<copyright>Copyright (C) 2009 - 2019 Techjoomla. All rights reserved.</copyright> | ||
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license> | ||
<version>3.0.1</version> | ||
<version>3.0.2</version> | ||
|
||
<files> | ||
<filename plugin="tjtokenlogin">tjtokenlogin.php</filename> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters