Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
d620d04
fix session last_seen code
ddbruce Oct 25, 2025
8316c55
update changelog
ddbruce Oct 25, 2025
a484b7d
1.7.1
ddbruce Oct 25, 2025
506b7a3
1.7.2
ddbruce Oct 25, 2025
8817cf3
trying to fix versioning
ddbruce Oct 25, 2025
71bff33
1.7.1
ddbruce Oct 25, 2025
98a6a28
try to fix session logout code
ddbruce Oct 25, 2025
42d06ae
trying
ddbruce Oct 25, 2025
f862a62
update changelog
ddbruce Oct 25, 2025
88f91c4
1.7.2
ddbruce Oct 25, 2025
d170113
Merge branch 'main' into dev
ddbruce Oct 25, 2025
9e631b5
disabled send button during sending loop
ddbruce Oct 28, 2025
324bad6
add delay to dev sending mode
ddbruce Oct 28, 2025
4aa5e59
update timeout
ddbruce Oct 28, 2025
e326540
update timeout code
ddbruce Oct 28, 2025
fff065d
try it with async/await
ddbruce Oct 29, 2025
a4d4810
disable textarea while sending
ddbruce Oct 29, 2025
84079bc
1.7.3
ddbruce Oct 29, 2025
925c9d4
update changelog
ddbruce Oct 29, 2025
61cc663
Merge branch 'main' into dev
ddbruce Oct 29, 2025
1f940aa
oauth from copilot
ddbruce Dec 28, 2025
aac077d
work
ddbruce Dec 28, 2025
d6072e6
work
ddbruce Dec 28, 2025
2f0c28a
changes
ddbruce Dec 28, 2025
5ed02da
work on user syncing and stuff
ddbruce Dec 28, 2025
013060a
admin work
ddbruce Dec 28, 2025
483cbf1
more admin work
ddbruce Dec 28, 2025
1ea6592
auth work
ddbruce Dec 28, 2025
dca8877
admin/auth work
ddbruce Dec 28, 2025
fb5709e
admin/auth work
ddbruce Dec 28, 2025
18ff5f0
add no-access page
ddbruce Dec 28, 2025
1f2e48d
add route for no-access page
ddbruce Dec 28, 2025
1aa4be6
clean up no-access page
ddbruce Dec 28, 2025
56594ec
fix something
ddbruce Dec 28, 2025
12ed8d4
1.8.0
ddbruce Dec 28, 2025
341c679
update help
ddbruce Dec 28, 2025
c4b8c3f
Merge branch 'main' into dan/minor/oauth
ddbruce Jan 2, 2026
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
203 changes: 201 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fullsend",
"version": "1.7.3",
"version": "1.8.0",
"description": "Fullsend allows allowed users to send bulk text messages to groups of recipients",
"main": "server.js",
"scripts": {
Expand All @@ -21,6 +21,9 @@
"body-parser": "^1.20.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"openid-client": "^5.2.0",
"jose": "^4.15.0",
"mariadb": "^3.0.0",
"nodemon": "^3.1.10",
"path": "^0.12.7",
Expand Down
8 changes: 6 additions & 2 deletions public/help.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
<a class="nav-link disabled" href="/" id="navVersion"></a>
</li>
<li class="nav-item">
<a class="nav-link" href="login" id="login" style="display:none;">Log in</a>
<a class="nav-link" href="" id="logout" onclick="logout()" style="display:none;">Log out</a>
<a class="nav-link" href="/api/login" id="login" style="display:none;">Log in</a>
<a class="nav-link" href="/api/logout" id="logout" onclick="logout()" style="display:none;">Log out</a>
</li>
</ul>
</div>
Expand All @@ -63,6 +63,10 @@ <h1>Fullsend</h1>
<div class="row mt-5">
<div class="col">
<h2>Changelog</h2><br>
<h3>v1.8.0</h3>
<p>
Adds (finally!) authentication via OpenID Connect (OIDC) and Keycloak. Users must have the <code>fullsend_access</code> role in Keycloak to use the application and <code>fullsend_admin</code> to administer it.
</p>
<h3>v1.7.3</h3>
<p>
Adds blocking and timeouts to discourage users from sending the same message multiple times before the server has completed ingesting the message/recipient pairs
Expand Down
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<a class="nav-link disabled" href="/" id="navVersion"></a>
</li>
<li class="nav-item">
<a class="nav-link" href="login" id="login">Log in</a>
<a class="nav-link" href="/api/login" id="login">Log in</a>
<!-- <a class="nav-link" href="" id="logout" onclick="logout()">Log out</a> -->
</li>
</ul>
Expand Down
Loading