smcoll

Results 35 issues of smcoll

The `makemigrations` management command will create a new migration for the model inheriting `SignatureType` whenever the keys in `settings.ANYSIGN['BACKENDS']` change. This can happen if the setting has different values in...

It would be handy to have a management command which would create a SignatureType for each backend in `settings.ANYSIGN['BACKENDS']`. i suppose that presumes that the SignatureType model didn't implement any...

Perhaps it would be advisable to have a unique constraint on SignatureType.signature_backend_code.

i added this git alias, per docs: ``` $ git config --global alias.delete-squashed '!f() { local targetBranch=${1:-main} && git checkout -q $targetBranch && git branch --merged | grep -v "\*"...

Here are the models: ``` class Foo(OnDeltaModel): name = models.CharField(max_length=50) is_public = models.BooleanField(default=False) class Bar(models.Model): foo = models.ForeignKey(models.Model, related_name='items'): ``` And the traceback: ``` >>> foo.save() Traceback (most recent call...

For dependencies marked as editable, this plugin will create .pth files including the local location of the path-based dependency. In that sense, the dependency is not bundled. Is there a...

When creating a new StormpathUser in the admin's create view, if the password doesn't meet some requirement (try a too-short password like 'foo'), a 500 is raised, instead of a...

bug

It would be helpful to have a setting for specifying which directory within the application to use. That way, multiple environments (production/staging/etc) could each use a different directory in the...

This will use `clientUserId`+`userId` to lookup a recipient if `userId` is available, else `clientUserId`+`email`+`userName`. It also removes `envelopeId` from the lookup kwargs because i believe that value is ignored, and...

Narrowing in on a non-callback issue mentioned in https://github.com/novafloss/django-docusign/issues/65... If a user has changed their name using the DocuSign interface while signing, and that name change is not reflected in...

refactoring