Andy Schriner

Results 8 issues of Andy Schriner

Added generator for GenericFK relations. Overall method: find GenericFk fields from model._meta.virtual_fields, add them to the list of fields to be processed, and remove the constituent content_type and object_id fields...

```python # search.py class Org(DocType): name = Text(required=True) state = Keyword() employee_size_range = Keyword() revenue_range = Keyword() lifetime_revenue_range = Keyword() street_address = Keyword() city = Keyword() postal_code = Keyword() website...

Hi there. Started playing with this using ES 6 and noticed that String needed to be replaced with Text or Keyword. Cheers! I'm also curious if you have an approach...

There are 3 changes in this PR: 1. Swapped manage.py for a django 1.6 version 2. Reconfigured the "redirect_to" logic in the convert view to be more like the auth...

The call to `rel.to` on LazyUser user field returns a string "auth.User", not the class. ``` @classmethod def get_user_class(cls): return cls._meta.get_field('user').rel.to ``` This results in `AttributeError: 'str' object has no...

I am using a foreignkey to dbtemplates Template model to determine how to display another model. ie. ``` class MyModel(models.Model): template = models.ForeignKey(Template) ... ``` When I switch the template...

I have a required custom field (story points/estimate). When I submit an issue via the Sentry-> Jira integration, the request fails, apparently because the value for the custom field is...