feat: add API tokens + force log out button

This commit is contained in:
Sam 2023-03-30 16:50:30 +02:00
parent 9c8b6a8f91
commit 2716471fa9
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
9 changed files with 207 additions and 52 deletions

View file

@ -0,0 +1,6 @@
-- +migrate Up
-- 2023-03-30: Add token information to database
alter table tokens add column api_only boolean not null default false;
alter table tokens add column read_only boolean not null default false;