Skip to content

Commit 474d1e2

Browse files
author
Vidas P
committed
Remove Wunderlist agent (service shut down)
1 parent 77f9cc2 commit 474d1e2

File tree

12 files changed

+4
-158
lines changed

12 files changed

+4
-158
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [current]
9-
## Fixed
9+
### Fixed
1010
- Update puma (CVE-2020-11076 and CVE-2020-11077).
1111
- Update rails (CVE-2020-8165, CVE-2020-8164, CVE-2020-8162 and CVE-2020-8185).
1212
- Update kaminari (CVE-2020-11082).
1313
- Update websocket-extensions (CVE-2020-7663).
1414
- Update rack (CVE-2020-8184).
1515

16+
### Removed
17+
- Wunderlist agent removed (service has shut down).
18+
1619

1720
## [0.9.8] - 2020-05-11
1821
### Fixed

Gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ gem 'aws-sdk-core', '~> 2.2.15'
2323

2424
# Optional Services.
2525
gem 'omniauth-37signals' # BasecampAgent
26-
gem 'omniauth-wunderlist'
2726

2827
gem 'ace-rails-ap', '~> 4.2'
2928
gem 'bootsnap', '>= 1.4.6', require: false

Gemfile.lock

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -365,9 +365,6 @@ GEM
365365
omniauth-oauth2 (1.6.0)
366366
oauth2 (~> 1.1)
367367
omniauth (~> 1.9)
368-
omniauth-wunderlist (0.0.2)
369-
omniauth (~> 1.0)
370-
omniauth-oauth2 (~> 1.1)
371368
orm_adapter (0.5.0)
372369
overcommit (0.53.0)
373370
childprocess (>= 0.6.3, < 4)
@@ -648,7 +645,6 @@ DEPENDENCIES
648645
omniauth (~> 1.9.0)
649646
omniauth-37signals
650647
omniauth-evernote
651-
omniauth-wunderlist
652648
overcommit (~> 0.53.0)
653649
pg (~> 1.2.3)
654650
pry-byebug (~> 3.9.0)

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -292,10 +292,6 @@ These agents use third party services to provide functionality. They typically r
292292
<td><strong>Google&nbsp;Calendar&nbsp;Publish&nbsp;Agent</strong></td>
293293
<td>Creates events on your Google Calendar.</td>
294294
</tr>
295-
<tr>
296-
<td><strong>Wunderlist Agent</strong></td>
297-
<td>Creates new Wunderlist tasks based on incoming messages.</td>
298-
</tr>
299295
<tr>
300296
<td><strong>Slack Agent</strong></td>
301297
<td>Lets you receive messages and send notifications to Slack.</td>

app/assets/stylesheets/application.scss.erb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,6 @@ $service-colors: (
200200
37signals: #8fc857,
201201
github: #444444,
202202
dropbox: #007EE5,
203-
wunderlist: #ED5F27,
204203
evernote: #00C85A
205204
);
206205

app/helpers/application_helper.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,6 @@ def omniauth_provider_icon(provider)
6464
case provider.to_sym
6565
when :github, :dropbox
6666
icon_tag("fa-#{provider}")
67-
when :wunderlist
68-
icon_tag('fa-list')
6967
else
7068
icon_tag('fa-lock')
7169
end

app/models/agents/wunderlist_agent.rb

Lines changed: 0 additions & 74 deletions
This file was deleted.

app/views/services/index.html.erb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
Before you can authenticate with a service, you need to set it up. Consult respective services documentation on obtaining OAUTH keys and secrets. Once you have OAUTH keys and secrets, please set them as environment variables:
1212
<ul>
1313
<li>Basecamp (37signals) - <b>THIRTY_SEVEN_SIGNALS_OAUTH_KEY</b> and <b>THIRTY_SEVEN_SIGNALS_OAUTH_SECRET</b></li>
14-
<li>Wunderlist - <b>WUNDERLIST_OAUTH_KEY</b> and <b>WUNDERLIST_OAUTH_SECRET</b></li>
1514
<li>Evernote - <b>EVERNOTE_OAUTH_KEY</b> and <b>EVERNOTE_OAUTH_SECRET</b></li>
1615
</ul>
1716
</p>

config/initializers/devise.rb

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -239,12 +239,6 @@
239239
config.omniauth :'37signals', key, secret
240240
end
241241

242-
if defined?(OmniAuth::Strategies::Wunderlist) &&
243-
(key = ENV['WUNDERLIST_OAUTH_KEY']).present? &&
244-
(secret = ENV['WUNDERLIST_OAUTH_SECRET']).present?
245-
config.omniauth :wunderlist, key, secret
246-
end
247-
248242
if defined?(OmniAuth::Strategies::Evernote) &&
249243
(key = ENV['EVERNOTE_OAUTH_KEY']).present? &&
250244
(secret = ENV['EVERNOTE_OAUTH_SECRET']).present?

config/locales/devise.en.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ en:
2929
omniauth_providers:
3030
github: "GitHub"
3131
37signals: "37Signals (Basecamp)"
32-
wunderlist: 'Wunderlist'
3332
evernote: "Evernote"
3433
passwords:
3534
no_token: "You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided."

0 commit comments

Comments
 (0)