mirror of
https://github.com/processone/ejabberd
synced 2025-10-05 19:42:11 +02:00
Support OAUTH client authentication
This commit is contained in:
parent
47d0eed3f1
commit
8f7fa38949
10 changed files with 274 additions and 43 deletions
|
@ -354,6 +354,13 @@ CREATE TABLE oauth_token (
|
|||
expire bigint NOT NULL
|
||||
) ENGINE=InnoDB CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
||||
|
||||
CREATE TABLE oauth_client (
|
||||
client varchar(191) NOT NULL PRIMARY KEY,
|
||||
secret text NOT NULL,
|
||||
grant_type text NOT NULL,
|
||||
options text NOT NULL
|
||||
) ENGINE=InnoDB CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
||||
|
||||
CREATE TABLE route (
|
||||
domain text NOT NULL,
|
||||
server_host text NOT NULL,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue