OAuth metadata endpoints.

This commit is contained in:
flash 2025-02-26 18:06:46 +00:00
parent e5a947e973
commit b2f8347526
Signed by: flash
GPG key ID: 2C9C2C574D47FE3E
4 changed files with 99 additions and 2 deletions

View file

@ -0,0 +1,12 @@
<?php
use Index\Db\DbConnection;
use Index\Db\Migration\DbMigration;
final class AddIndexOnRestrictedFieldForScopes_20250226_173829 implements DbMigration {
public function migrate(DbConnection $conn): void {
$conn->execute(<<<SQL
ALTER TABLE msz_scopes
ADD INDEX scopes_restricted_index (scope_restricted);
SQL);
}
}