mirror of https://github.com/zulip/zulip.git
integrations: Fix email integration being listed unconditionally.
This commit is contained in:
parent
464928fdcc
commit
56b1f79fe3
|
@ -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',
|
||||
|
|
|
@ -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'),
|
||||
|
|
Loading…
Reference in New Issue