[PR #1823] [MERGED] Serverside actions and cli #3837

Closed
opened 2026-03-14 07:41:38 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/amidaware/tacticalrmm/pull/1823
Author: @sadnub
Created: 4/2/2024
Status: Merged
Merged: 6/28/2024
Merged by: @wh1te909

Base: developHead: urlaction-rework


📝 Commits (10+)

📊 Changes

32 files changed (+1187 additions, -230 deletions)

View changed files

📝 .devcontainer/entrypoint.sh (+1 -0)
📝 .vscode/settings.json (+2 -1)
api/tacticalrmm/accounts/migrations/0037_role_can_run_server_scripts_role_can_use_webterm.py (+23 -0)
📝 api/tacticalrmm/accounts/models.py (+2 -0)
📝 api/tacticalrmm/accounts/tests.py (+5 -5)
📝 api/tacticalrmm/accounts/views.py (+86 -1)
📝 api/tacticalrmm/agents/models.py (+14 -10)
api/tacticalrmm/alerts/migrations/0014_alerttemplate_action_rest_alerttemplate_action_type_and_more.py (+55 -0)
📝 api/tacticalrmm/alerts/models.py (+192 -78)
📝 api/tacticalrmm/alerts/permissions.py (+14 -0)
📝 api/tacticalrmm/alerts/serializers.py (+18 -2)
📝 api/tacticalrmm/alerts/tests.py (+33 -8)
📝 api/tacticalrmm/alerts/views.py (+2 -2)
📝 api/tacticalrmm/autotasks/models.py (+13 -11)
📝 api/tacticalrmm/checks/models.py (+13 -11)
📝 api/tacticalrmm/checks/tasks.py (+4 -3)
📝 api/tacticalrmm/core/consumers.py (+170 -7)
api/tacticalrmm/core/migrations/0045_coresettings_enable_server_scripts_and_more.py (+65 -0)
📝 api/tacticalrmm/core/models.py (+40 -49)
📝 api/tacticalrmm/core/permissions.py (+10 -0)

...and 12 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/pull/1823 **Author:** [@sadnub](https://github.com/sadnub) **Created:** 4/2/2024 **Status:** ✅ Merged **Merged:** 6/28/2024 **Merged by:** [@wh1te909](https://github.com/wh1te909) **Base:** `develop` ← **Head:** `urlaction-rework` --- ### 📝 Commits (10+) - [`097e567`](https://github.com/amidaware/tacticalrmm/commit/097e56712241aa3181eb4db5f3a38c0dfc254dbc) init - [`d1b2cae`](https://github.com/amidaware/tacticalrmm/commit/d1b2cae2016f3ec977bb6fa641ae21d161eb3837) add migrations - [`0606642`](https://github.com/amidaware/tacticalrmm/commit/060664295341ac32bce609cd812755846c344a0c) fix failure action not saving correctly if a server script - [`c10bf9b`](https://github.com/amidaware/tacticalrmm/commit/c10bf9b3577cf3adf5671659b29f12a15d9b334d) black - [`7b0c269`](https://github.com/amidaware/tacticalrmm/commit/7b0c269bce700603cbc7b47d55285a22da52578d) fix flake - [`a36fc7e`](https://github.com/amidaware/tacticalrmm/commit/a36fc7ecfdc5e9274dc67174408a9cc635d157aa) fix webhooks - [`8a03d9c`](https://github.com/amidaware/tacticalrmm/commit/8a03d9c498d89b2d69806de7c9cf0a4dba55ae42) set term - [`52aa269`](https://github.com/amidaware/tacticalrmm/commit/52aa269af9f301519510a412c6dda3f8b24c71e9) modify totp setup view - [`59b4604`](https://github.com/amidaware/tacticalrmm/commit/59b4604c7784382e09456aca8ad666d700809ff1) wrong role name - [`531aac6`](https://github.com/amidaware/tacticalrmm/commit/531aac692347a5aa5f56f90c3a0fcea4add96ddc) harden connect method ### 📊 Changes **32 files changed** (+1187 additions, -230 deletions) <details> <summary>View changed files</summary> 📝 `.devcontainer/entrypoint.sh` (+1 -0) 📝 `.vscode/settings.json` (+2 -1) ➕ `api/tacticalrmm/accounts/migrations/0037_role_can_run_server_scripts_role_can_use_webterm.py` (+23 -0) 📝 `api/tacticalrmm/accounts/models.py` (+2 -0) 📝 `api/tacticalrmm/accounts/tests.py` (+5 -5) 📝 `api/tacticalrmm/accounts/views.py` (+86 -1) 📝 `api/tacticalrmm/agents/models.py` (+14 -10) ➕ `api/tacticalrmm/alerts/migrations/0014_alerttemplate_action_rest_alerttemplate_action_type_and_more.py` (+55 -0) 📝 `api/tacticalrmm/alerts/models.py` (+192 -78) 📝 `api/tacticalrmm/alerts/permissions.py` (+14 -0) 📝 `api/tacticalrmm/alerts/serializers.py` (+18 -2) 📝 `api/tacticalrmm/alerts/tests.py` (+33 -8) 📝 `api/tacticalrmm/alerts/views.py` (+2 -2) 📝 `api/tacticalrmm/autotasks/models.py` (+13 -11) 📝 `api/tacticalrmm/checks/models.py` (+13 -11) 📝 `api/tacticalrmm/checks/tasks.py` (+4 -3) 📝 `api/tacticalrmm/core/consumers.py` (+170 -7) ➕ `api/tacticalrmm/core/migrations/0045_coresettings_enable_server_scripts_and_more.py` (+65 -0) 📝 `api/tacticalrmm/core/models.py` (+40 -49) 📝 `api/tacticalrmm/core/permissions.py` (+10 -0) _...and 12 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-14 07:41:38 +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#3837
No description provided.