mirror of
https://github.com/fosrl/pangolin.git
synced 2026-05-08 05:39:49 -05:00
[PR #1247] [CLOSED] Feature session management #2488
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/fosrl/pangolin/pull/1247
Author: @jnewing
Created: 8/10/2025
Status: ❌ Closed
Base:
dev← Head:feature-session-management📝 Commits (2)
fe10330initial commit of the session mgr stuff45fb1ealang stuff📊 Changes
18 files changed (+1315 additions, -102 deletions)
View changed files
📝
package-lock.json(+9 -101)📝
server/routers/external.ts(+9 -0)➕
server/routers/session/getSessionStats.ts(+70 -0)➕
server/routers/session/index.ts(+6 -0)➕
server/routers/session/invalidateAllUserSessions.ts(+60 -0)➕
server/routers/session/invalidateResourceSession.ts(+57 -0)➕
server/routers/session/invalidateUserSession.ts(+60 -0)➕
server/routers/session/listResourceSessions.ts(+88 -0)➕
server/routers/session/listUserSessions.ts(+59 -0)➕
src/app/admin/sessions/InvalidateSessionDialog.tsx(+86 -0)➕
src/app/admin/sessions/ResourceSessionsDataTable.tsx(+30 -0)➕
src/app/admin/sessions/ResourceSessionsTable.tsx(+250 -0)➕
src/app/admin/sessions/UserSessionsDataTable.tsx(+30 -0)➕
src/app/admin/sessions/UserSessionsTable.tsx(+251 -0)➕
src/app/admin/sessions/page.tsx(+147 -0)➕
src/app/admin/sessions/resource-sessions/page.tsx(+48 -0)➕
src/app/admin/sessions/user-sessions/page.tsx(+48 -0)📝
src/app/navigation.tsx(+7 -1)📄 Description
Community Contribution License Agreement
By creating this pull request, I grant the project maintainers an unlimited,
perpetual license to use, modify, and redistribute these contributions under any terms they
choose, including both the AGPLv3 and the Fossorial Commercial license terms. I
represent that I have the right to grant this license for all contributed content.
Description
Adds admins the ability to manage existing user and resource sessions. Shows some basic session stats and admins can choose to remove individual sessions or invalidate all sessions for a given user.
How to test?
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.