Skip to content
Snippets Groups Projects
Unverified Commit 80c9d04b authored by Matthew Piatetsky's avatar Matthew Piatetsky Committed by GitHub
Browse files

Merge pull request #19947 from edx/REVMI-67

REVMI-67 update description to describe datetime as user local time
parents 2a1cff52 9740746e
No related branches found
No related tags found
No related merge requests found
# -*- coding: utf-8 -*-
# Generated by Django 1.11.20 on 2019-03-06 15:47
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('content_type_gating', '0004_auto_20181128_1521'),
]
operations = [
migrations.AlterField(
model_name='contenttypegatingconfig',
name='enabled_as_of',
field=models.DateTimeField(blank=True, default=None, help_text='If the configuration is Enabled, then all enrollments created after this date and time (user local time) will be affected.', null=True, verbose_name='Enabled As Of'),
),
]
......@@ -47,7 +47,7 @@ class ContentTypeGatingConfig(StackedConfigurationModel):
blank=True,
help_text=_(
'If the configuration is Enabled, then all enrollments '
'created after this date and time (UTC) will be affected.'
'created after this date and time (user local time) will be affected.'
)
)
studio_override_enabled = models.NullBooleanField(
......
# -*- coding: utf-8 -*-
# Generated by Django 1.11.20 on 2019-03-06 15:46
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('course_duration_limits', '0004_auto_20181128_1521'),
]
operations = [
migrations.AlterField(
model_name='coursedurationlimitconfig',
name='enabled_as_of',
field=models.DateTimeField(blank=True, default=None, help_text='If the configuration is Enabled, then all enrollments created after this date and time (user local time) will be affected.', null=True, verbose_name='Enabled As Of'),
),
]
......@@ -47,7 +47,7 @@ class CourseDurationLimitConfig(StackedConfigurationModel):
blank=True,
help_text=_(
'If the configuration is Enabled, then all enrollments '
'created after this date and time (UTC) will be affected.'
'created after this date and time (user local time) will be affected.'
)
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment