Skip to content

Commit

Permalink
Merge pull request #15 from moshthepitt/max-size
Browse files Browse the repository at this point in the history
Increase max size
  • Loading branch information
moshthepitt authored Jul 25, 2018
2 parents 01bbed1 + 6d36eca commit 705731d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion small_small_hr/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Main init file for small_small_hr
"""
VERSION = (0, 0, 9)
VERSION = (0, 1, 0)
__version__ = '.'.join(str(v) for v in VERSION)
2 changes: 1 addition & 1 deletion small_small_hr/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ class StaffDocument(TimeStampedModel, models.Model):
'image/jpeg',
'image/png'
],
max_file_size=1048576
max_file_size=10485760
)
public = models.BooleanField(
_('Public'),
Expand Down

0 comments on commit 705731d

Please sign in to comment.