- 
  Notifications
 
You must be signed in to change notification settings  - Fork 34
 
fix: Fix typo in permission name #476
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
 
Reviewer's GuideThis PR corrects a typo in the verbose name of the 'delete_versionlock' permission by updating the model definition and adding a migration to persist the change. Class diagram for the updated Version model permission optionsclassDiagram
 class Version {
 <<model>>
 }
 Version : Meta
 class Meta {
 unique_together = ("content_type", "object_id")
 permissions = (("delete_versionlock", "Can unlock version"),)
 }
 Version --> Meta
 File-Level Changes
 Assessment against linked issues
 Possibly linked issues
 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.
Hey @stefan6419846 - I've reviewed your changes and they look great!
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
The second part of the last todo item on the checklist has been omitted as the link to Slack returns a 404 and I do not see any benefit of registering there for such a simple change.
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.
Thanks, @stefan6419846 !
Codecov Report
All modified and coverable lines are covered by tests ✅
Project coverage is 93.66%. Comparing base (
a132204) to head (e0a2158).
Report is 8 commits behind head on master.
Additional details and impacted files
@@ Coverage Diff @@ ## master #476 +/- ## ========================================== + Coverage 90.55% 93.66% +3.10% ========================================== Files 72 76 +4 Lines 2732 2699 -33 Branches 322 0 -322 ========================================== + Hits 2474 2528 +54 + Misses 182 171 -11 + Partials 76 0 -76
☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.
🚀 New features to boost your workflow:
- ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
 - 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.
 
Uh oh!
There was an error while loading. Please reload this page.
Closes #474.
Description
Fixes a typo in the verbose name of a permission.
Related resources
Checklist
masterSlack to find a "pr review buddy" who is going to review my pull request.
Summary by Sourcery
Fix the typo in the verbose name of the delete_versionlock permission and add a database migration to apply the correction
Bug Fixes:
Enhancements: