Skip to content

Commit

Permalink
Make page size configurable (#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
c-w committed Jan 21, 2020
1 parent 7faacc5 commit c73bfb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opwen_email_client/webapp/config.py
Expand Up @@ -105,7 +105,7 @@ class AppConfig(object):
SYNC_SCHEDULE = env('OPWEN_SYNC_SCHEDULE', '').strip()

EMAIL_ADDRESS_DELIMITER = ','
EMAILS_PER_PAGE = 10
EMAILS_PER_PAGE = env.int('OPWEN_EMAILS_PER_PAGE', 10)

LOCALES_DIRECTORY = path.join(app_basedir, 'translations')
DEFAULT_LOCALE = Locale.parse('en_ca')
Expand Down

0 comments on commit c73bfb6

Please sign in to comment.