From 8a271520339b77f437d548b3db611fa3a3ca9add Mon Sep 17 00:00:00 2001 From: pirate Date: Fri, 7 Jul 2017 22:41:38 -0700 Subject: [PATCH 1/2] Added ADMINS to settings.py --- oshc/oshc/settings.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/oshc/oshc/settings.py b/oshc/oshc/settings.py index 8daf95c..fcb7489 100644 --- a/oshc/oshc/settings.py +++ b/oshc/oshc/settings.py @@ -24,6 +24,9 @@ ALLOWED_HOSTS = ['*'] +# Tuple of people who get error notifications +ADMINS = [('Tapasweni Pathak','tapaswenipathak@gmail.com'),('Nikhita Raghunath','nikitaraghunath@gmail.com'),('Ibrahim Jarif','jarifibrahim@gmail.com')] + # Application definition From 990e0c56a8421d3434651ac947a34089dd12cdea Mon Sep 17 00:00:00 2001 From: pirate Date: Sat, 8 Jul 2017 19:00:31 -0700 Subject: [PATCH 2/2] Added all ADMINS to settings.py --- oshc/oshc/settings.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/oshc/oshc/settings.py b/oshc/oshc/settings.py index fcb7489..c6e6126 100644 --- a/oshc/oshc/settings.py +++ b/oshc/oshc/settings.py @@ -25,8 +25,12 @@ ALLOWED_HOSTS = ['*'] # Tuple of people who get error notifications -ADMINS = [('Tapasweni Pathak','tapaswenipathak@gmail.com'),('Nikhita Raghunath','nikitaraghunath@gmail.com'),('Ibrahim Jarif','jarifibrahim@gmail.com')] - +ADMINS = [ + ('Tapasweni Pathak','tapaswenipathak@gmail.com'), + ('Nikhita Raghunath','nikitaraghunath@gmail.com'), + ('Ibrahim Jarif','jarifibrahim@gmail.com'), + ('Amar Prakash Pandey', 'amar.om1994@gmail.com') +] # Application definition