Skip to content

Commit

Permalink
Merge pull request #447 from openedx/remove-django-fernet
Browse files Browse the repository at this point in the history
Remove djfernet imports from migrations.
  • Loading branch information
awais786 authored Aug 10, 2023
2 parents 9dd7896 + 811e1b3 commit 3632977
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion edxval/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
init
"""

__version__ = '2.4.0'
__version__ = '2.4.1'
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import django.db.models.deletion
import django.utils.timezone
import edxval.models
import fernet_fields.fields
import model_utils.fields


Expand Down Expand Up @@ -170,8 +169,6 @@ class Migration(migrations.Migration):
('modified', model_utils.fields.AutoLastModifiedField(default=django.utils.timezone.now, editable=False, verbose_name='modified')),
('org', models.CharField(help_text='This value must match the value of organization in studio/edx-platform.', max_length=50, verbose_name='Organization')),
('provider', models.CharField(choices=[('Custom', 'Custom'), ('3PlayMedia', '3PlayMedia'), ('Cielo24', 'Cielo24')], max_length=50, verbose_name='Transcript provider')),
('api_key', fernet_fields.fields.EncryptedTextField(max_length=255, verbose_name='API key')),
('api_secret', fernet_fields.fields.EncryptedTextField(max_length=255, verbose_name='API secret')),
],
options={
'verbose_name_plural': 'Transcript Credentials',
Expand Down

0 comments on commit 3632977

Please sign in to comment.