Skip to content
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

Clone custom abstract fields #4724

Merged
merged 3 commits into from Nov 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGES.rst
Expand Up @@ -31,6 +31,8 @@ Bugfixes
for Editing (:pr:`4715`)
- Fix filename pattern check in Editing when a filename contains dots (:pr:`4715`)
- Require explicit admin override (or being whitelisted) to override blockings (:pr:`4706`)
- Clone custom abstract/contribution fields when cloning abstract settings (:pr:`4724`,
thanks :user:`bpedersen2`)

Version 2.3.1
-------------
Expand Down
2 changes: 1 addition & 1 deletion indico/modules/events/abstracts/clone.py
Expand Up @@ -21,7 +21,7 @@
class AbstractSettingsCloner(EventCloner):
name = 'abstracts_settings'
friendly_name = _('Call for Abstracts (settings, email templates, review questions)')
requires = {'contribution_types', 'tracks'}
requires = {'contribution_fields', 'contribution_types', 'tracks'}

@property
def is_visible(self):
Expand Down