diff options
author | 2020-05-28 08:23:14 +0300 | |
---|---|---|
committer | 2020-05-28 08:23:14 +0300 | |
commit | e321a25c05875e82073470429708b37849947b16 (patch) | |
tree | d9729c0f4b84ddccfe47ac0dc88666ef2a0e3fc2 | |
parent | (Off-topic Channel Names Viewset Tests): Added test for handling running out ... (diff) |
OT: Replace help text of `used` field
Co-authored-by: Leon Sandøy <[email protected]>
-rw-r--r-- | pydis_site/apps/api/migrations/0051_offtopicchannelname_used.py | 2 | ||||
-rw-r--r-- | pydis_site/apps/api/models/bot/off_topic_channel_name.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pydis_site/apps/api/migrations/0051_offtopicchannelname_used.py b/pydis_site/apps/api/migrations/0051_offtopicchannelname_used.py index 74836d8c..1b838aec 100644 --- a/pydis_site/apps/api/migrations/0051_offtopicchannelname_used.py +++ b/pydis_site/apps/api/migrations/0051_offtopicchannelname_used.py @@ -13,6 +13,6 @@ class Migration(migrations.Migration): migrations.AddField( model_name='offtopicchannelname', name='used', - field=models.BooleanField(default=False, help_text='Show is channel already used as channel name in this round.'), + field=models.BooleanField(default=False, help_text='Whether or not this name has already been used during this rotation'), ), ] diff --git a/pydis_site/apps/api/models/bot/off_topic_channel_name.py b/pydis_site/apps/api/models/bot/off_topic_channel_name.py index 3345754d..413cbfae 100644 --- a/pydis_site/apps/api/models/bot/off_topic_channel_name.py +++ b/pydis_site/apps/api/models/bot/off_topic_channel_name.py @@ -18,7 +18,7 @@ class OffTopicChannelName(ModelReprMixin, models.Model): used = models.BooleanField( default=False, - help_text="Show is channel already used as channel name in this round." + help_text="Whether or not this name has already been used during this rotation", ) def __str__(self): |