Skip to content

Commit

Permalink
Bump entity listing limit to 300 (#1348)
Browse files Browse the repository at this point in the history
  • Loading branch information
jarosenb authored Jul 11, 2024
1 parent 1c254f6 commit 8146f77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion designsafe/apps/projects/models/agave/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def save(self, ag):
self.project_id = prj.project_id
super(Project, self).save(ag)

def related_entities(self, offset=0, limit=100):
def related_entities(self, offset=0, limit=300):
from designsafe.apps.projects.models.utils import lookup_model
relattrs = self._meta._reverse_fields
rel_names = [getattr(self, attrname).related_obj_name for attrname in relattrs \
Expand Down

0 comments on commit 8146f77

Please sign in to comment.