[PR #100] [MERGED] Bunch of stuff #1528

Closed
opened 2026-03-02 02:23:40 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/amidaware/tacticalrmm/pull/100
Author: @sadnub
Created: 9/11/2020
Status: Merged
Merged: 9/11/2020
Merged by: @wh1te909

Base: developHead: feature-default-policy


📝 Commits (7)

  • bbaa41e add any automated task actions as a pending action if agent is offline
  • 63cb88e Added default policy support
  • 5b9e6c9 Added default policy notifications to the automation manager and related policies modal
  • 8c8b93f made the actual affected agent count show up in automation manager
  • 78c3ce3 bump app version
  • 8249f0e show sync status correctly
  • 3d5da1d create additional policy override and monthly patching

📊 Changes

27 files changed (+641 additions, -84 deletions)

View changed files

📝 api/tacticalrmm/agents/models.py (+48 -1)
📝 api/tacticalrmm/api/views.py (+4 -0)
📝 api/tacticalrmm/automation/models.py (+30 -1)
📝 api/tacticalrmm/automation/serializers.py (+3 -11)
📝 api/tacticalrmm/automation/tasks.py (+13 -0)
📝 api/tacticalrmm/automation/views.py (+8 -4)
api/tacticalrmm/autotasks/migrations/0004_automatedtask_sync_status.py (+18 -0)
api/tacticalrmm/autotasks/migrations/0005_auto_20200910_1725.py (+18 -0)
📝 api/tacticalrmm/autotasks/models.py (+7 -0)
📝 api/tacticalrmm/autotasks/tasks.py (+59 -7)
api/tacticalrmm/core/migrations/0008_auto_20200910_1434.py (+25 -0)
📝 api/tacticalrmm/core/models.py (+14 -0)
📝 api/tacticalrmm/core/views.py (+10 -1)
api/tacticalrmm/logs/migrations/0003_auto_20200910_0347.py (+18 -0)
📝 api/tacticalrmm/logs/models.py (+17 -0)
📝 api/tacticalrmm/tacticalrmm/settings.py (+1 -1)
api/tacticalrmm/winupdate/migrations/0006_auto_20200910_1909.py (+28 -0)
api/tacticalrmm/winupdate/migrations/0007_winupdatepolicy_run_time_day.py (+18 -0)
📝 api/tacticalrmm/winupdate/models.py (+15 -1)
📝 api/tacticalrmm/winupdate/tasks.py (+54 -29)

...and 7 more files

📄 Description

  • Using agent pending actions to handle task creation/editing/deletion
  • Added a default policy to core settings that will apply to all agents
  • Added additional patching options and overrides. Also fixed the timezone issue

🔄 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/100 **Author:** [@sadnub](https://github.com/sadnub) **Created:** 9/11/2020 **Status:** ✅ Merged **Merged:** 9/11/2020 **Merged by:** [@wh1te909](https://github.com/wh1te909) **Base:** `develop` ← **Head:** `feature-default-policy` --- ### 📝 Commits (7) - [`bbaa41e`](https://github.com/amidaware/tacticalrmm/commit/bbaa41e337301b437afc4ce50da60fac51da7a4c) add any automated task actions as a pending action if agent is offline - [`63cb88e`](https://github.com/amidaware/tacticalrmm/commit/63cb88e60ebfb71ff064c0c4ac364dd5245b796a) Added default policy support - [`5b9e6c9`](https://github.com/amidaware/tacticalrmm/commit/5b9e6c9ffae4c6681dd1fec8863e59629de72e07) Added default policy notifications to the automation manager and related policies modal - [`8c8b93f`](https://github.com/amidaware/tacticalrmm/commit/8c8b93f3b8e3a2765d514321817433f7a547392b) made the actual affected agent count show up in automation manager - [`78c3ce3`](https://github.com/amidaware/tacticalrmm/commit/78c3ce31c820f996cf94933c05356632b70b8458) bump app version - [`8249f0e`](https://github.com/amidaware/tacticalrmm/commit/8249f0ed627af370eb42a0773adee8c010ab2781) show sync status correctly - [`3d5da1d`](https://github.com/amidaware/tacticalrmm/commit/3d5da1d2110451eed408f68fad96af5ab6b20bdb) create additional policy override and monthly patching ### 📊 Changes **27 files changed** (+641 additions, -84 deletions) <details> <summary>View changed files</summary> 📝 `api/tacticalrmm/agents/models.py` (+48 -1) 📝 `api/tacticalrmm/api/views.py` (+4 -0) 📝 `api/tacticalrmm/automation/models.py` (+30 -1) 📝 `api/tacticalrmm/automation/serializers.py` (+3 -11) 📝 `api/tacticalrmm/automation/tasks.py` (+13 -0) 📝 `api/tacticalrmm/automation/views.py` (+8 -4) ➕ `api/tacticalrmm/autotasks/migrations/0004_automatedtask_sync_status.py` (+18 -0) ➕ `api/tacticalrmm/autotasks/migrations/0005_auto_20200910_1725.py` (+18 -0) 📝 `api/tacticalrmm/autotasks/models.py` (+7 -0) 📝 `api/tacticalrmm/autotasks/tasks.py` (+59 -7) ➕ `api/tacticalrmm/core/migrations/0008_auto_20200910_1434.py` (+25 -0) 📝 `api/tacticalrmm/core/models.py` (+14 -0) 📝 `api/tacticalrmm/core/views.py` (+10 -1) ➕ `api/tacticalrmm/logs/migrations/0003_auto_20200910_0347.py` (+18 -0) 📝 `api/tacticalrmm/logs/models.py` (+17 -0) 📝 `api/tacticalrmm/tacticalrmm/settings.py` (+1 -1) ➕ `api/tacticalrmm/winupdate/migrations/0006_auto_20200910_1909.py` (+28 -0) ➕ `api/tacticalrmm/winupdate/migrations/0007_winupdatepolicy_run_time_day.py` (+18 -0) 📝 `api/tacticalrmm/winupdate/models.py` (+15 -1) 📝 `api/tacticalrmm/winupdate/tasks.py` (+54 -29) _...and 7 more files_ </details> ### 📄 Description - Using agent pending actions to handle task creation/editing/deletion - Added a default policy to core settings that will apply to all agents - Added additional patching options and overrides. Also fixed the timezone issue --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-02 02:23:40 +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#1528
No description provided.