[PR #28] [MERGED] sso init #30

Closed
opened 2026-03-02 02:12:27 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/amidaware/tacticalrmm-web/pull/28
Author: @sadnub
Created: 9/15/2024
Status: Merged
Merged: 11/20/2024
Merged by: @wh1te909

Base: developHead: sso


📝 Commits (10+)

  • 541134a sso init
  • 0eb8166 move sso auth to auth store
  • 75a9ef8 implement session auth login logic and cleanup views
  • 09e39ef rollback axios not redirecting on 401 errors for certain urls
  • c31ed66 added user session tracking, social accoutn tracking, and implemented local user logon blocking
  • 65096e6 implement role assignment on sso user signups and log ip for sso logins
  • d0cf72b fix 403 on sso provider signup and other tweaks to UI. Setting to disable SSO
  • 0e59f58 auto redirect to sso login on sso signup
  • 856a3b8 allow dispay full name in UI if present
  • 0ce8da4 add sso user column in user table and fix disconnecting sso accounts

📊 Changes

27 files changed (+1551 additions, -188 deletions)

View changed files

📝 package-lock.json (+33 -33)
📝 package.json (+6 -6)
📝 quasar.config.js (+16 -2)
📝 src/api/accounts.js (+28 -0)
📝 src/api/core.ts (+7 -0)
📝 src/boot/axios.js (+12 -3)
📝 src/components/AdminManager.vue (+206 -134)
src/components/accounts/UserSessionsTable.vue (+151 -0)
📝 src/components/modals/agents/RunScript.vue (+2 -2)
📝 src/components/modals/alerts/AlertsOverview.vue (+14 -0)
📝 src/components/modals/coresettings/EditCoreSettings.vue (+17 -2)
📝 src/composables/accounts.js (+24 -1)
📝 src/ee/LICENSE.md (+1 -1)
src/ee/sso/api/sso.ts (+144 -0)
src/ee/sso/components/SSOAccountsTable.vue (+142 -0)
src/ee/sso/components/SSOProvidersForm.vue (+160 -0)
src/ee/sso/components/SSOProvidersTable.vue (+293 -0)
src/ee/sso/components/SSOSettings.vue (+112 -0)
src/ee/sso/types/sso.ts (+33 -0)
src/ee/sso/utils/cookies.ts (+21 -0)

...and 7 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/amidaware/tacticalrmm-web/pull/28 **Author:** [@sadnub](https://github.com/sadnub) **Created:** 9/15/2024 **Status:** ✅ Merged **Merged:** 11/20/2024 **Merged by:** [@wh1te909](https://github.com/wh1te909) **Base:** `develop` ← **Head:** `sso` --- ### 📝 Commits (10+) - [`541134a`](https://github.com/amidaware/tacticalrmm-web/commit/541134a88f11252206483935451bcc0d776be684) sso init - [`0eb8166`](https://github.com/amidaware/tacticalrmm-web/commit/0eb81662d332ab3026042306a915e57fd5ccbb89) move sso auth to auth store - [`75a9ef8`](https://github.com/amidaware/tacticalrmm-web/commit/75a9ef88d1133bb9035b9eae3109cf28be5ffa4e) implement session auth login logic and cleanup views - [`09e39ef`](https://github.com/amidaware/tacticalrmm-web/commit/09e39ef6dac63cbee708cb58c7c04dc9c7d75209) rollback axios not redirecting on 401 errors for certain urls - [`c31ed66`](https://github.com/amidaware/tacticalrmm-web/commit/c31ed666b51fd4325dbbb4e7c4a0d2b5b8e389aa) added user session tracking, social accoutn tracking, and implemented local user logon blocking - [`65096e6`](https://github.com/amidaware/tacticalrmm-web/commit/65096e6b8875521996f3913f7a92eda9c60db392) implement role assignment on sso user signups and log ip for sso logins - [`d0cf72b`](https://github.com/amidaware/tacticalrmm-web/commit/d0cf72bbd2a1b1efdfff54c3aeb126e99f0017bf) fix 403 on sso provider signup and other tweaks to UI. Setting to disable SSO - [`0e59f58`](https://github.com/amidaware/tacticalrmm-web/commit/0e59f580c3b1d9544cccac9e0acc9d5e7f6e29a1) auto redirect to sso login on sso signup - [`856a3b8`](https://github.com/amidaware/tacticalrmm-web/commit/856a3b8b96f5773cf0051b9764cd389522735577) allow dispay full name in UI if present - [`0ce8da4`](https://github.com/amidaware/tacticalrmm-web/commit/0ce8da44c1412034261298604ded1a3821303a1d) add sso user column in user table and fix disconnecting sso accounts ### 📊 Changes **27 files changed** (+1551 additions, -188 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+33 -33) 📝 `package.json` (+6 -6) 📝 `quasar.config.js` (+16 -2) 📝 `src/api/accounts.js` (+28 -0) 📝 `src/api/core.ts` (+7 -0) 📝 `src/boot/axios.js` (+12 -3) 📝 `src/components/AdminManager.vue` (+206 -134) ➕ `src/components/accounts/UserSessionsTable.vue` (+151 -0) 📝 `src/components/modals/agents/RunScript.vue` (+2 -2) 📝 `src/components/modals/alerts/AlertsOverview.vue` (+14 -0) 📝 `src/components/modals/coresettings/EditCoreSettings.vue` (+17 -2) 📝 `src/composables/accounts.js` (+24 -1) 📝 `src/ee/LICENSE.md` (+1 -1) ➕ `src/ee/sso/api/sso.ts` (+144 -0) ➕ `src/ee/sso/components/SSOAccountsTable.vue` (+142 -0) ➕ `src/ee/sso/components/SSOProvidersForm.vue` (+160 -0) ➕ `src/ee/sso/components/SSOProvidersTable.vue` (+293 -0) ➕ `src/ee/sso/components/SSOSettings.vue` (+112 -0) ➕ `src/ee/sso/types/sso.ts` (+33 -0) ➕ `src/ee/sso/utils/cookies.ts` (+21 -0) _...and 7 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-02 02:12:27 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/tacticalrmm-web#30
No description provided.