Created endpoint for authenticating with plex and linking your plex user to the logged in seasoned user. User database table gets a new plex_userid column. This will be used to fetch tautulli stats for your account.
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
CREATE TABLE IF NOT EXISTS user (
|
||||
user_name varchar(127) UNIQUE,
|
||||
password varchar(127),
|
||||
email varchar(127) UNIQUE,
|
||||
admin boolean DEFAULT 0,
|
||||
email varchar(127) UNIQUE,
|
||||
plex_userid varchar(127) DEFAULT NULL,
|
||||
primary key (user_name)
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user