integrations: Fix email integration being listed unconditionally.

This commit is contained in:
Tim Abbott 2017-03-04 23:53:01 -08:00
parent 464928fdcc
commit 56b1f79fe3
2 changed files with 1 additions and 2 deletions

View File

@ -72,7 +72,6 @@ not_yet_fully_covered = {
'zerver/lib/bugdown/__init__.py',
'zerver/lib/events.py',
'zerver/lib/i18n.py',
'zerver/lib/integrations.py',
'zerver/lib/message.py',
'zerver/lib/narrow.py',
'zerver/lib/notifications.py',

View File

@ -174,7 +174,7 @@ INTEGRATIONS = {
'basecamp': Integration('basecamp', 'basecamp'),
'capistrano': Integration('capistrano', 'capistrano'),
'codebase': Integration('codebase', 'codebase'),
'email': Integration('email', 'email'),
'email': EmailIntegration('email', 'email'),
'git': Integration('git', 'git'),
'google-calendar': Integration('google-calendar', 'google-calendar', display_name='Google Calendar'),
'hubot': Integration('hubot', 'hubot'),