-
Notifications
You must be signed in to change notification settings - Fork 43
RHINENG-21214: fix manager update privileges #2042
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Referenced Jiras: |
Reviewer's guide (collapsed on small PRs)Reviewer's GuideExtends the manager role’s UPDATE privileges on the system_patch table to include the template_id column, and wires this into the schema versioning via a new migration (144). ER diagram for system_patch table context in privilege updateerDiagram
system_patch {
bigint id PK
bigint template_id
int installable_advisory_count_cache
int applicable_advisory_count_cache
int applicable_advisory_enh_count_cache
int applicable_advisory_bug_count_cache
int applicable_advisory_sec_count_cache
}
template {
bigint id PK
}
system_patch }o--|| template : references
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #2042 +/- ##
=======================================
Coverage 59.39% 59.39%
=======================================
Files 134 134
Lines 8678 8678
=======================================
Hits 5154 5154
Misses 2977 2977
Partials 547 547
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
/retest |
1 similar comment
|
/retest |
Secure Coding Practices Checklist GitHub Link
Secure Coding Checklist
Summary by Sourcery
Adjust database privileges to allow managers to update additional system patch metadata while providing migration scripts to manage the new permission.
Enhancements:
Build: