-
Notifications
You must be signed in to change notification settings - Fork 136
Adding talk permissions clarity #1281
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
Open
ArnavBallinCode
wants to merge
15
commits into
fossasia:enext
Choose a base branch
from
ArnavBallinCode:fix/talk-permissions-clarity
base: enext
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+76
−2
Open
Changes from 13 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
57ce625
The permission labels 'Can work with and change proposals' and 'Is a …
ArnavBallinCode 2a36ff6
Add Talk permissions section to team create/edit page
ArnavBallinCode 43fb841
Merge branch 'enext' into fix/talk-permissions-clarity
ArnavBallinCode 3ecc656
Update app/eventyay/base/models/organizer.py
ArnavBallinCode 1b008f5
Update app/eventyay/base/models/organizer.py
ArnavBallinCode 72a8e3a
Merge branch 'enext' into fix/talk-permissions-clarity
ArnavBallinCode 52f9928
Add migration for updated team permission labels
ArnavBallinCode 447908e
Update migration to match simplified permission labels
ArnavBallinCode ee97b7c
Merge branch 'enext' into fix/talk-permissions-clarity
ArnavBallinCode 7787b57
Merge branch 'enext' into fix/talk-permissions-clarity
mariobehling 4d15593
Merge branch 'enext' into fix/talk-permissions-clarity
ArnavBallinCode ecdc064
Add JavaScript to show/hide Review settings
ArnavBallinCode e8d34f6
consistence_last_line
ArnavBallinCode cc097fa
Merge branch 'enext' into fix/talk-permissions-clarity
ArnavBallinCode fcd50fc
Merge branch 'enext' into fix/talk-permissions-clarity
mariobehling File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
app/eventyay/base/migrations/0002_update_team_permission_labels.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| # Generated migration for updating Team permission labels and help text | ||
|
|
||
| from django.db import migrations, models | ||
|
|
||
|
|
||
| class Migration(migrations.Migration): | ||
|
|
||
| dependencies = [ | ||
| ('base', '0001_initial'), | ||
| ] | ||
|
|
||
| operations = [ | ||
| migrations.AlterField( | ||
| model_name='team', | ||
| name='can_change_submissions', | ||
| field=models.BooleanField( | ||
| default=False, | ||
| help_text='Can edit submission details, change proposal states (accept/reject/waitlist), manage submission metadata, and oversee the review workflow. This provides full management permissions beyond standard reviewing.', | ||
| verbose_name='Can edit and manage submissions' | ||
| ), | ||
| ), | ||
| migrations.AlterField( | ||
| model_name='team', | ||
| name='is_reviewer', | ||
| field=models.BooleanField( | ||
| default=False, | ||
| help_text='Can review and provide feedback on submissions but cannot edit details or change submission states.', | ||
| verbose_name='Reviewer' | ||
| ), | ||
ArnavBallinCode marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| ), | ||
| ] | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.