Add access token authentication via HTTP AUTHORIZATION bearer header

This commit is contained in:
David Heinemeier Hansson
2025-12-01 16:24:18 +01:00
committed by Stanko K.R.
parent ea697b7143
commit a81c681a8d
9 changed files with 111 additions and 5 deletions
+10
View File
@@ -321,6 +321,16 @@ ActiveRecord::Schema[8.2].define(version: 2025_12_05_010536) do
t.index ["email_address"], name: "index_identities_on_email_address", unique: true
end
create_table "identity_access_tokens", id: :uuid, force: :cascade do |t|
t.datetime "created_at", null: false
t.text "description", limit: 65535
t.uuid "identity_id", null: false
t.string "permission", limit: 255
t.string "token", limit: 255
t.datetime "updated_at", null: false
t.index ["identity_id"], name: "index_access_token_on_identity_id"
end
create_table "magic_links", id: :uuid, force: :cascade do |t|
t.string "code", limit: 255, null: false
t.datetime "created_at", null: false