Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -166,3 +166,6 @@ server_processes_manager:

conflict_resolver:
target=conflict_resolver npm run compile

my_preferences:
target=my_preferences npm run compile
1 change: 1 addition & 0 deletions SQL/0000-00-00-schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ CREATE TABLE `users` (
`Active` enum('Y','N') NOT NULL default 'Y',
`Password_hash` varchar(255) default NULL,
`PasswordChangeRequired` tinyint(1) NOT NULL default 0,
`TOTPSecret` binary(64) DEFAULT NULL,
`Pending_approval` enum('Y','N') default 'Y',
`Doc_Repo_Notifications` enum('Y','N') default 'N',
`language_preference` integer unsigned default NULL,
Expand Down
1 change: 1 addition & 0 deletions SQL/New_patches/2025-08-21-add_totp_support.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE users ADD COLUMN TOTPSecret binary(64) DEFAULT NULL AFTER PasswordChangeRequired;
4 changes: 3 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
"laminas/laminas-diactoros" : "^3.5",
"ext-json": "*",
"bjeavons/zxcvbn-php": "^1.0",
"aws/aws-sdk-php": "^3.209"
"aws/aws-sdk-php": "^3.209",
"selective/base32": "^2.0",
"chillerlan/php-qrcode": "^5.0"
},
"require-dev" : {
"squizlabs/php_codesniffer" : "^3.5",
Expand Down
Loading
Loading