Skip to content
Snippets Groups Projects
Commit 37f69c20 authored by Edward Zarecor's avatar Edward Zarecor
Browse files

Merge pull request #10358 from edx/e0d/fix-consumer-secret

PR for discussing the right thing to do here.
parents 02744481 3e2c6484
No related branches found
Tags release-2021-08-02-19.11
No related merge requests found
......@@ -27,7 +27,7 @@ class LtiConsumer(models.Model):
"""
consumer_name = models.CharField(max_length=255, unique=True)
consumer_key = models.CharField(max_length=32, unique=True, db_index=True, default=short_token)
consumer_secret = models.CharField(max_length=32, unique=True, default=long_token)
consumer_secret = models.CharField(max_length=32, unique=True, default=short_token)
instance_guid = models.CharField(max_length=255, blank=True, null=True, unique=True)
@staticmethod
......
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