Commit f750beca by Peter Fogg

Add referral help text.

parent 74c8bf40
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0006_user_referral_tracking_id'),
]
operations = [
migrations.AlterField(
model_name='user',
name='referral_tracking_id',
field=models.CharField(max_length=255, verbose_name='Referral Tracking ID', default='affiliate_partner'),
),
]
......@@ -9,7 +9,7 @@ from guardian.mixins import GuardianUserMixin
class User(GuardianUserMixin, AbstractUser):
"""Custom user model for use with OpenID Connect."""
full_name = models.CharField(_('Full Name'), max_length=255, blank=True, null=True)
referral_tracking_id = models.CharField(_(''), max_length=255, default='affiliate_partner')
referral_tracking_id = models.CharField(_('Referral Tracking ID'), max_length=255, default='affiliate_partner')
@property
def access_token(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment